cargo applet to build and install C-ABI compatibile dynamic and static libraries.
It produces and installs a correct pkg-config file, a static library and a dynamic library, and a C header to be used by any C (and C-compatible) software.
``` sh
$ cargo cbuild --destdir=${D} --prefix=/usr --libdir=/usr/lib64
sh
$ cargo cinstall --destdir=${D} --prefix=/usr --libdir=/usr/lib64 ```
For a more in-depth explanation of how cargo-c
works and how to use it for
your crates, read Building Crates so they Look Like C ABI Libraries.
capi.rs
with the C-API you want to expose and use
#[cfg(cargo_c)]
to hide it when you build a normal rust library.cbindgen.toml
][cbinden-toml] and fill it with
at least the include guard and probably you want to set the language to C (it
defaults to C++)cargo-c
and do cargo cinstall --prefix=/usr
--destdir=/tmp/some-place
or something along those lines.staticlib
supportcdylib
support