A binding generator for the Rust language.
This is a fork of crabtw/rust-bindgen designed to work on C++ code as well.
Currently this is being used for Servo's SpiderMonkey bindings, and also for the Stylo project.
It is recommended to use clang 3.9 with the current generator. It can run with clang 3.8 with some features disabled.
Download and install the official pre-built binary from LLVM download page.
If you use Homebrew:
$ brew install llvm
If you use MacPorts:
$ port install clang-3.9
# apt-get install llvm-3.9-dev libclang-3.9-dev
Ubuntu 16.10 provides the necessary packages directly. If you are using older version of Ubuntu or other Debian-based distros, you may need to add the LLVM repos to get version 3.9. See http://apt.llvm.org/.
# pacman -S clang
If your package manager doesn't yet offer Clang 3.9, you'll need to build from source. For that, follow the instructions here.
Those instructions list optional steps. For bindgen:
- Checkout and build clang
- Checkout and build the extra-clang-tools
- Checkout and build the compiler-rt
- You do not need to checkout or build libcxx
$ cd bindgen
$ cargo build
If you installed multiple versions of llvm, it may not be able to locate the latest version of libclang. In that case, you may want to either uninstall other versions of llvm, or specify the path of the desired libclang explicitly:
$ export LIBCLANG_PATH=path/to/clang-3.9/lib
On Linux and macOS, you may also need to add a path to libclang.so
(usually
the same path as above) to library search path. This can be done as below:
$ export LD_LIBRARY_PATH=path/to/clang-3.9/lib # for Linux
$ export DYLD_LIBRARY_PATH=path/to/clang-3.9/lib # for macOS
See the Stylo build script to see how it is used inside the Servo organisation.
In Cargo.toml
:
[package]
# ...
build = "build.rs"
[build-dependencies]
libbindgen = "0.1"
In build.rs
:
extern crate libbindgen;
use std::env;
use std::path::Path;
fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let _ = libbindgen::builder()
.header("example.h")
.use_core()
.generate().unwrap()
.write_to_file(Path::new(&out_dir).join("example.rs"));
}
In src/main.rs
:
include!(concat!(env!("OUT_DIR"), "/example.rs"));
There are a few options documented when running ./bindgen --help
. Other
options might exist (see the SpiderMonkey script to see how it
is used inside the Servo organisation.
This fork of rust-bindgen can handle a number of C++ features.
When passing in header files, the file will automatically be treated as C++ if
it ends in .hpp
. If it doesn't, -x c++
can be used to force C++ mode.
The translation of classes, structs, enums, and typedefs can be adjusted using annotations. Annotations are specifically formatted html tags inside doxygen style comments.
The opaque
annotation instructs bindgen to ignore all fields defined in
a struct/class.
/// <div rustbindgen opaque></div>
The hide
annotation instructs bindgen to ignore the struct/class/field/enum
completely.
/// <div rustbindgen hide></div>
The replaces
annotation can be used to use a type as a replacement for other
(presumably more complex) type. This is used in Stylo to generate bindings for
structures that for multiple reasons are too complex for bindgen to understand.
For example, in a C++ header:
/**
* <div rustbindgen replaces="nsTArray"></div>
*/
template<typename T>
class nsTArray_Simple {
T* mBuffer;
public:
// The existence of a destructor here prevents bindgen from deriving the Clone
// trait via a simple memory copy.
~nsTArray_Simple() {};
};
That way, after code generation, the bindings for the nsTArray
type are
the ones that would be generated for nsTArray_Simple
.
The nocopy
annotation is used to prevent bindgen to autoderive the Copy
and Clone
traits for a type.