-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.rs
36 lines (30 loc) · 943 Bytes
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
extern crate bindgen;
use std::env;
use std::path::PathBuf;
fn main() {
let files = [
"crypt_musl/crypt_blowfish.c",
"crypt_musl/crypt.c",
"crypt_musl/crypt_des.c",
"crypt_musl/crypt_md5.c",
"crypt_musl/crypt_sha256.c",
"crypt_musl/crypt_sha512.c",
"crypt_musl/encrypt.c",
];
cc::Build::new()
.cargo_metadata(true)
.warnings(false)
.files(files)
.file("crypt_musl/crypt.c")
.compile("libcrypt.a");
println!("cargo:rerun-if-changed=wrapper.h");
let bindings = bindgen::Builder::default()
.header("wrapper.h")
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.generate()
.expect("Unable to generate bindings");
let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
bindings
.write_to_file(out_path.join("bindings.rs"))
.expect("Couldn't write bindings!");
}