kernel/build.rs
2024-05-18 20:02:40 -05:00

9 lines
200 B
Rust

// build.rs
fn main() {
// Tell ld to use linker script.
println!("cargo::rustc-link-arg=-Tsrc/script.lds");
// Don't do any magic linker stuff.
println!("cargo::rustc-link-arg=--omagic");
}