2024-05-13 18:31:37 -04:00
|
|
|
// build.rs
|
|
|
|
|
|
|
|
fn main() {
|
2024-05-14 01:05:58 -04:00
|
|
|
// Tell ld to use linker script.
|
2024-05-19 21:03:03 -04:00
|
|
|
println!("cargo::rustc-link-arg=-Tlds/kernel.lds");
|
2024-05-13 18:31:37 -04:00
|
|
|
// Don't do any magic linker stuff.
|
2024-05-14 00:08:09 -04:00
|
|
|
println!("cargo::rustc-link-arg=--omagic");
|
2024-05-13 18:31:37 -04:00
|
|
|
}
|