parent
21d97418d6
commit
96258c6a0b
@ -1,16 +1,7 @@
|
|||||||
extern crate cc;
|
extern crate cc;
|
||||||
use std::process::Command;
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let output = Command::new("uname").output()
|
|
||||||
.expect("failed to get uname");
|
|
||||||
let compiler = match output.stdout.as_slice() {
|
|
||||||
b"Darwin\n" => "x86_64-elf-gcc",
|
|
||||||
b"Linux\n" => "gcc",
|
|
||||||
_ => panic!("unknown os")
|
|
||||||
};
|
|
||||||
cc::Build::new()
|
cc::Build::new()
|
||||||
.compiler(compiler)
|
|
||||||
.file("src/arch/x86_64/driver/apic/lapic.c")
|
.file("src/arch/x86_64/driver/apic/lapic.c")
|
||||||
.compile("cobj");
|
.compile("cobj");
|
||||||
}
|
}
|
Loading…
Reference in new issue