Go to file
openharmony_ci 12a9d9c85f
!7 rust_bindgen适配syn升级至2.0
Merge pull request !7 from Future/master
2024-04-08 15:02:28 +00:00
.github Remove any references to master (#2391) 2023-01-18 12:23:13 -05:00
bindgen 适配syn升级至2.0 2024-04-02 15:05:30 +08:00
bindgen-cli Add GN Build Files and Custom Modifications 2023-04-12 17:25:45 +08:00
bindgen-integration Generate extern wrappers for inlined functions (#2335) 2023-02-07 10:13:48 -05:00
bindgen-tests Generate extern wrappers for inlined functions (#2335) 2023-02-07 10:13:48 -05:00
book Document semantic difference between constructors and wrappers (#2385) 2023-01-10 17:00:27 -05:00
ci split the repo into a workspace 2022-10-04 20:47:17 -05:00
csmith-fuzzing Move the csmith-fuzzing directory to the top level. 2022-10-16 21:29:41 +02:00
releases Remove any references to master (#2391) 2023-01-18 12:23:13 -05:00
.gitattributes Always check out test headers and expectations as LF 2017-09-22 19:02:42 -07:00
.gitignore split the repo into a workspace 2022-10-04 20:47:17 -05:00
appveyor.yml Remove any references to master (#2391) 2023-01-18 12:23:13 -05:00
bindgen_test.png add oh user guide 2023-05-04 11:58:04 +08:00
Cargo.lock Release 0.64.0 Request (#2399) 2023-02-07 10:36:50 -05:00
Cargo.toml split the repo into a workspace 2022-10-04 20:47:17 -05:00
CHANGELOG.md Release 0.64.0 Request (#2399) 2023-02-07 10:36:50 -05:00
CONTRIBUTING.md Release 0.64.0 Request (#2399) 2023-02-07 10:36:50 -05:00
example-graphviz-ir.png Update the example graphviz image 2017-02-17 17:45:49 -08:00
LICENSE Regenerates the BSD3 License so GitHub recognises it 2018-07-05 14:16:28 +01:00
OAT.xml OAT补漏 2023-08-07 10:45:51 +08:00
README_zh.md add oh user guide 2023-05-04 11:58:04 +08:00
README.md Update to clap 4. (#2380) 2023-01-12 15:37:48 -05:00
README.OpenSource Add OAT.xml and README.OpenSource 2023-04-14 14:14:38 +08:00
rustfmt.toml Rustfmt. 2019-09-17 11:53:23 +09:00

crates.io docs.rs

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);
}

Users Guide

📚 Read the bindgen users guide here! 📚

MSRV

The minimum supported Rust version is 1.60.0.

No MSRV bump policy has been established yet, so MSRV may increase in any release.

The MSRV is the minimum Rust version that can be used to compile bindgen. However, bindgen can generate bindings that are compatible with Rust versions below the current MSRV.

API Reference

API reference documentation is on docs.rs

Environment Variables

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
    • Arguments are whitespace-separated
    • Use shell-style quoting to pass through whitespace
    • Examples:
      • Specify alternate sysroot: --sysroot=/path/to/sysroot
      • Add include search path with spaces: -I"/path/with spaces"
  • BINDGEN_EXTRA_CLANG_ARGS_<TARGET>: similar to BINDGEN_EXTRA_CLANG_ARGS, but used to set per-target arguments to pass to clang. Useful to set system include directories in a target-specific way in cross-compilation environments with multiple targets. Has precedence over BINDGEN_EXTRA_CLANG_ARGS.

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.

Releases

We don't follow a specific release calendar, but if you need a release please file an issue requesting that (ping @emilio for increased effectiveness).

Contributing

See CONTRIBUTING.md for hacking on bindgen!