A binding generator for the rust language. It is ported from clay's bindgen.
Note: The libclang.so has to be statically linked with LLVM or you will encounter issue 89. You can also use LD_PRELOAD=/path/to/libclang.so to workaround the problem.
$ cargo build
Note: This links with Apple's version of libclang on OS X by default. This can be changed by setting the LIBCLANG_PATH environment variable.
If you are running the command line tool you will also need to append this path to your DYLDLIBRARYPATH environment variable, which you might already have set if you have installed the Rust compiler outside of standard /usr/local path.
The default path on OS X is:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/
Or if you only have Xcode Command Line Tools installed:
export DYLD_LIBRARY_PATH=/Library/Developer/CommandLineTools/usr/lib
```
Usage: ./bindgen [options] input.h
Options:
-h or --help Display help message
-l
Options other than stated above are passed to clang
```
``` Usage: bindgen!([headers], [named options]) Options:
Option Name Type Default
----------------------------------------------
link multiple strings
link_static multiple strings
link_framework multiple strings
match multiple strings
emit_builtins bool true
allow_unknown_types bool false
clang_args string
``` See "Command Line Usage" section for option descriptions
bindgen -l mysql -match mysql.h -o mysql.rs /usr/include/mysql/mysql.h
or
echo '#include <mysql.h>' > gen.h
bindgen `mysql_config --cflags` -l mysql -match mysql.h -o mysql.rs gen.h
or
Cargo.toml
[dependencies.bindgen]
git = "https://github.com/crabtw/rust-bindgen.git"
main.rs
#![feature(phase)]
#[phase(plugin)] extern crate bindgen;
#[allow(dead_code, uppercase_variables, non_camel_case_types)]
mod mysql_bindings {
bindgen!("/usr/include/mysql/mysql.h", match="mysql.h", link="mysql")
}