mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 08:26:17 +04:00
9 lines
199 B
Rust
9 lines
199 B
Rust
extern crate cc;
|
|
|
|
fn main() {
|
|
cc::Build::new()
|
|
.file("src/arch/x86_64/driver/apic/lapic.c")
|
|
.file("src/arch/x86_64/driver/keyboard/keyboard.c")
|
|
.flag("-mcmodel=large")
|
|
.compile("cobj");
|
|
} |