2021-05-18 12:11:20 +00:00
|
|
|
use std::env;
|
|
|
|
use std::fs::File;
|
2021-03-29 20:28:36 +00:00
|
|
|
use std::io::Write;
|
2021-05-18 12:11:20 +00:00
|
|
|
use std::path::PathBuf;
|
2021-03-29 20:28:36 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Put the linker script somewhere the linker can find it
|
|
|
|
let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
|
|
|
let link_x = include_bytes!("link-rp.x.in");
|
|
|
|
let mut f = File::create(out.join("link-rp.x")).unwrap();
|
|
|
|
f.write_all(link_x).unwrap();
|
|
|
|
|
|
|
|
println!("cargo:rustc-link-search={}", out.display());
|
|
|
|
|
|
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
|
|
println!("cargo:rerun-if-changed=link-rp.x.in");
|
|
|
|
}
|