commit | ed160db4b3854eff8f42e0de96d286138c9443bc | [log] [tgz] |
---|---|---|
author | bors <bors@rust-lang.org> | Sat Feb 09 08:23:45 2019 +0000 |
committer | bors <bors@rust-lang.org> | Sat Feb 09 08:23:45 2019 +0000 |
tree | 2a8961525cbb291cd01707fdb99a0d809f34407d | |
parent | ff97bdb074782fc5bbcae88c405d408672726f3d [diff] | |
parent | 152fd7e6d28ade1ec5fdb73f2a5158fd345d2dd9 [diff] |
Auto merge of #1249 - arnavb:patch-1, r=gnzlbg Fix license badge
Raw FFI bindings to platform libraries like libc
.
NOTE: The minimum supported Rust version is Rust 1.13.0 . APIs requiring newer Rust features are only available on newer Rust versions:
Feature | Version |
---|---|
union | 1.19.0 |
const mem::size_of | 1.24.0 |
repr(align) | 1.25.0 |
core::ffi::c_void | 1.30.0 |
To use libc
at its fullest, Rust 1.30.0 is required.
First, add the following to your Cargo.toml
:
[dependencies] libc = "0.2"
Next, add this to your crate root:
extern crate libc;
Currently libc by default links to the standard library, but if you would instead like to use libc in a #![no_std]
situation or crate you can request this via:
[dependencies] libc = { version = "0.2", default-features = false }
By default libc uses private fields in structs in order to enforce a certain memory alignment on them. These structs can be hard to instantiate outside of libc. To make libc use #[repr(align(x))]
, instead of the private fields, activate the align feature. This requires Rust 1.25 or newer:
[dependencies] libc = { version = "0.2", features = ["align"] }
All structs implemented by the libc crate have the Copy
and Clone
traits implemented for them. The additional traits of Debug,
Eq,
Hash, and
PartialEq` can be enabled with the extra_traits feature (requires Rust 1.25 or newer):
[dependencies] libc = { version = "0.2", features = ["extra_traits"] }
The primary purpose of this crate is to provide all of the definitions necessary to easily interoperate with C code (or "C-like" code) on each of the platforms that Rust supports. This includes type definitions (e.g. c_int
), constants (e.g. EINVAL
) as well as function headers (e.g. malloc
).
This crate does not strive to have any form of compatibility across platforms, but rather it is simply a straight binding to the system libraries on the platform in question.
This crate exports all underlying platform types, functions, and constants under the crate root, so all items are accessible as libc::foo
. The types and values of all the exported APIs match the platform that libc is compiled for.
More detailed information about the design of this library can be found in its associated RFC.
Want to use an API which currently isn't bound in libc
? It's quite easy to add one!
The internal structure of this crate is designed to minimize the number of #[cfg]
attributes in order to easily be able to add new items which apply to all platforms in the future. As a result, the crate is organized hierarchically based on platform. Each module has a number of #[cfg]
'd children, but only one is ever actually compiled. Each module then reexports all the contents of its children.
This means that for each platform that libc supports, the path from a leaf module to the root will contain all bindings for the platform in question. Consequently, this indicates where an API should be added! Adding an API at a particular level in the hierarchy means that it is supported on all the child platforms of that level. For example, when adding a Unix API it should be added to src/unix/mod.rs
, but when adding a Linux-only API it should be added to src/unix/notbsd/linux/mod.rs
.
If you're not 100% sure at what level of the hierarchy an API should be added at, fear not! This crate has CI support which tests any binding against all platforms supported, so you'll see failures if an API is added at the wrong level or has different signatures across platforms.
With that in mind, the steps for adding a new API are:
We have two automated tests running on Travis:
cd libc-test && cargo test
skip_*()
functions in build.rs
if you really need a workaround.rustc ci/style.rs && ./style src
Now that you've done the amazing job of landing your new API or your new platform in this crate, the next step is to get that sweet, sweet usage from crates.io! The only next step is to bump the version of libc and then publish it. If you'd like to get a release out ASAP you can follow these steps:
Cargo.toml
, you'll just be bumping the patch version number.cargo update
to regenerate the lockfile to encode your version bump in the lock file. You may pull in some other updated dependencies, that's ok.The following platforms are currently tested and have documentation available:
Tested:
i686-pc-windows-msvc
x86_64-pc-windows-msvc
(Windows)i686-pc-windows-gnu
x86_64-pc-windows-gnu
i686-apple-darwin
x86_64-apple-darwin
(OSX)i386-apple-ios
x86_64-apple-ios
i686-unknown-linux-gnu
x86_64-unknown-linux-gnu
(Linux)x86_64-unknown-linux-musl
(Linux MUSL)aarch64-unknown-linux-gnu
(Linux)aarch64-unknown-linux-musl
(Linux MUSL)sparc64-unknown-linux-gnu
(Linux)mips-unknown-linux-gnu
arm-unknown-linux-gnueabihf
arm-linux-androideabi
(Android)x86_64-unknown-freebsd
x86_64-unknown-openbsd
x86_64-rumprun-netbsd
The following may be supported, but are not guaranteed to always work:
i686-unknown-freebsd
x86_64-unknown-bitrig
x86_64-unknown-dragonfly
i686-unknown-haiku
x86_64-unknown-haiku
x86_64-unknown-netbsd
x86_64-sun-solaris