blob: c710dfca745972440c7f18bf16bf47156bafd65e (
plain) (
blame)
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
|
use std::env;
use std::io::Write;
use std::path::Path;
fn main() {
// Generate KVM constants from the system header <linux/kvm.h>.
// Only re-run if the generation source file changed.
println!("cargo:rerun-if-changed=sysdeps/kvm.c");
// Input directory.
let sysdeps = Path::new(&env::var("CARGO_MANIFEST_DIR").unwrap()).join("sysdeps");
// Output file.
let kvm_constants = Path::new(&env::var("OUT_DIR").unwrap()).join("kvm_constants.rs");
// Run make to generate the output file.
let o = std::process::Command::new("make")
.arg("-C")
.arg(sysdeps.to_str().unwrap())
.arg(format!("OUT={}", kvm_constants.display()))
.output()
.unwrap();
std::io::stdout().write_all(&o.stdout).unwrap();
std::io::stderr().write_all(&o.stderr).unwrap();
// Ensure `make` was successfull.
assert!(o.status.success());
}
|