parent
b972a2fbbb
commit
4ad50ec94f
@ -0,0 +1,14 @@
|
|||||||
|
// build.rs
|
||||||
|
use std::env;
|
||||||
|
use std::fs;
|
||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
||||||
|
|
||||||
|
// Put the linker script somewhere the linker can find it.
|
||||||
|
fs::write(out_dir.join("memory.x"), include_bytes!("memory.x")).unwrap();
|
||||||
|
println!("cargo:rustc-link-search={}", out_dir.display());
|
||||||
|
println!("cargo:rerun-if-changed=memory.x");
|
||||||
|
println!("cargo:rerun-if-changed=build.rs");
|
||||||
|
}
|
Loading…
Reference in new issue