20 lines
596 B
Rust
20 lines
596 B
Rust
// Ref: https://github.com/luojia65/rustsbi/blob/master/platform/k210/build.rs
|
|
use std::env;
|
|
use std::fs;
|
|
use std::io::Write;
|
|
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::File::create(out_dir.join("link-k210.ld"))
|
|
.unwrap()
|
|
.write_all(include_bytes!("link-k210.ld"))
|
|
.unwrap();
|
|
println!("cargo:rustc-link-search={}", out_dir.display());
|
|
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
println!("cargo:rerun-if-changed=link-k210.ld");
|
|
}
|