commit | 98eb592eb2ec2b69d659f7c736291be39bbe45f5 | [log] [tgz] |
---|---|---|
author | Haibo Huang <hhb@google.com> | Tue Aug 25 08:18:31 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Aug 25 08:18:31 2020 +0000 |
tree | a241c48393c7d0b05cbff20df008913bbfcadecc | |
parent | 3a636204681a1fec8a208cf0387c5d1f48af0ce1 [diff] | |
parent | 14d11d4e2a55091b18ad97d7cb484b0aa42141e5 [diff] |
Upgrade rust/crates/bindgen to 0.55.1 am: 14d11d4e2a Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bindgen/+/1408994 Change-Id: I0defe6765c76d76778217ba436ad779fb64640ce
bindgen
bindgen
automatically generates Rust FFI bindings to C (and some C++) libraries.
For example, given the C header doggo.h
:
typedef struct Doggo { int many; char wow; } Doggo; void eleven_out_of_ten_majestic_af(Doggo* pupper);
bindgen
produces Rust FFI code allowing you to call into the doggo
library's functions and use its types:
/* automatically generated by rust-bindgen 0.99.9 */ #[repr(C)] pub struct Doggo { pub many: ::std::os::raw::c_int, pub wow: ::std::os::raw::c_char, } extern "C" { pub fn eleven_out_of_ten_majestic_af(pupper: *mut Doggo); }
📚 Read the bindgen
users guide here! 📚
The minimum supported Rust version is 1.40.
No MSRV bump policy has been established yet, so MSRV may increase in any release.
API reference documentation is on docs.rs
In addition to the library API and executable command-line API, bindgen
can be controlled through environment variables.
End-users should set these environment variables to modify bindgen
's behavior without modifying the source code of direct consumers of bindgen
.
BINDGEN_EXTRA_CLANG_ARGS
: extra arguments to pass to clang
--sysroot=/path/to/sysroot
-I"/path/with spaces"
Additionally, bindgen
uses libclang
to parse C and C++ header files. To modify how bindgen
searches for libclang
, see the clang-sys
documentation. For more details on how bindgen
uses libclang
, see the bindgen
users guide.