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.crate-type
.~~ Do not specify the crate-type
, cargo-c will add the correct library target by itself.capi
to add C-API-specific optional dependencies.cbindgen.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.You may override various aspects of cargo-c
via settings in Cargo.toml
under the package.metadata.capi
key
```toml [package.metadata.capi]
min_version = "0.6.10" ```
```toml [package.metadata.capi.header]
.h
name = "new_name"
subdirectory = true
cbindgen
, or copy a pre-generated headerassets
subdirectory. By default a header is generated.generation = true ```
pkg-config
File Generation```toml [package.metadata.capi.pkg_config]
name = "libfoo"
description = "some description"
version = "1.2.3" ```
```toml [package.metadata.capi.library]
lib
depending on the target platform.name = "new_name"
version = "1.2.3" ```
staticlib
supportcdylib
support