Compare commits
3 Commits
28f3838463
...
58708161c1
Author | SHA1 | Date |
---|---|---|
|
58708161c1 | 4 months ago |
|
4ad50ec94f | 4 months ago |
|
b972a2fbbb | 4 months ago |
@ -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