-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.rs
47 lines (39 loc) · 1.35 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
use std::env;
use std::path::PathBuf;
use std::process::Command;
fn main() {
let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
bindgen::builder()
.header("wrapper.h")
.clang_arg(format!("-F{}/System/Library/Frameworks", show_sdk_path())) // -F<directory> Add framework to the search path
.allowlist_function("hv_.*")
.allowlist_var("HV.*")
.allowlist_var("VM.*")
.allowlist_var("IRQ.*")
.derive_default(true)
.derive_debug(true)
.generate_comments(false)
.generate()
.expect("Failed to generate bindings")
.write_to_file(out_path.join("bindings.rs"))
.expect("Failed to write bindings file");
println!("cargo:rustc-link-lib=framework=Hypervisor");
}
/// Execute `xcrun --sdk macosx --show-sdk-path` to locate MacOS SDK
fn show_sdk_path() -> String {
let output = Command::new("xcrun")
.arg("--sdk")
.arg("macosx")
.arg("--show-sdk-path")
.output()
.expect("Failed to execute xcrun");
if !output.stderr.is_empty() {
panic!("ERROR: {}", String::from_utf8(output.stderr).unwrap());
}
let mut path = output.stdout;
// Remove new line character ('\n' == 0x0A == 10)
if path.ends_with(&[10]) {
path.swap_remove(path.len() - 1);
}
String::from_utf8(path).unwrap()
}