bbhash-sys 0.1.0

unsafe bindings for BBHash
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    let mut c = cc::Build::new();
    c.cpp(true);
    c.warnings(false);
    c.flag("-fno-rtti");
    c.flag("-std=c++11");
    //c.flag("-fno-exceptions");
    c.include("BBHash");
    c.file("ffi.cpp");
    c.compile("libbbhashadapter.a");
}