Lines Matching refs:library
7 …bility with C/C++, compile time lints, test, IDL conversion, third-party library integration, and …
25 | ohos_rust_shared_library | Rust dynamic library. | Rust dylib dynamic library, with the de…
26 | ohos_rust_static_library | Rust static library. | Rust rlib static library, with the defau…
27 | ohos_rust_proc_macro | Rust proc_macro library. | Rust proc_macro library, with the default f…
28 …ffi | Rust Foreign Function Interface (FFI) dynamic library. | Rust cdylib dynamic library,…
29 | ohos_rust_static_ffi | Rust FFI static library. | Rust staticlib library, which is called …
39 …uild a binary executable and a static rlib library, respectively. The executable depends on the st…
105 The **BUILD.gn** file of the rust third-party library can be automatically generated using the carg…
107 … and **ohos_rust_cargo_crate** templates to compile a third-party static library rlib file that co…
282 # Exists to test the case that a single crate has both a library and a binary
311 … | Tests the static linking of an executable file to a standard library. …
312 | build/rust/tests/test_dylib_crate | Tests the build of a dynamic library and dynamic l…
313 | build/rust/tests/test_rlib_crate | Tests the build of a static library and static lin…
315 … | Tests the generation of Rust FFI bindings to a C/C++ dynamic library. …
316 …ate | Tests the generation of Rust FFI bindings to a C/C++ static library. …
320 …st_rlib_cargo_crate | Tests the build of a Rust third-party static library and static linkin…
327 #### Linking a C/C++ library in Rust Source Code
328 …library of the OpenHarmony C/C++ module is in the **.z.so** format. However, when the Rust **-l** …
329 …dynamic library is directly linked in the Rust source code, the dynamic library must be in **.so**…
335 If a module depends on the binary rlib library, you can use the **externs** attribute.