cargo applet to build and install C-ABI compatible 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.
cargo-c may be installed from crates.io.
sh
cargo install cargo-c
You must have the cargo build requirements satisfied in order to build cargo-c:
* git
* pkg-config
(on Unix, used to figure out the host-provided headers/libraries)
* curl
(on Unix)
* OpenSSL headers (only for Unix, this is the libssl-dev
package on deb-based distributions)
You may pass --features=vendored-openssl
if you have problems building openssl-sys using the host-provided OpenSSL.
sh
cargo install cargo-c --features=vendored-openssl
``` sh
$ cargo cbuild --destdir=${D} --prefix=/usr --libdir=/usr/lib64
sh
$ cargo ctest
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)]
~~#[cfg(feature="capi")]
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.
> NOTE: It must be always present in Cargo.toml
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
enabled = true ```
pkg-config
File Generation```toml [package.metadata.capi.pkg_config]
name = "libfoo"
description = "some description"
version = "1.2.3"
requires = "gstreamer-1.0, gstreamer-base-1.0"
requires_private = "gobject-2.0, glib-2.0 >= 2.56.0, gmodule-2.0" ```
```toml [package.metadata.capi.library]
lib
depending on the target platform.name = "new_name"
version = "1.2.3"
libdir
.install_subdir = "gstreamer-1.0"
versioning = false
-Cpanic=abort
to the RUSTFLAGS automatically, it may be useful in caserustflags = "-Cpanic=abort" ```
staticlib
supportcdylib
supportThis software has been partially developed in the scope of the H2020 project SIFIS-Home with GA n. 952652.