Compare commits
No commits in common. '58708161c1840c3f53211f4bc239e1f4cef32407' and '28f3838463778b169c78facb8c3f96776418d668' have entirely different histories.
58708161c1
...
28f3838463
@ -1,14 +0,0 @@
|
||||
// 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