-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.rs
39 lines (31 loc) · 1.12 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
extern crate riscv_target;
use riscv_target::Target;
use std::env;
use std::fs;
use std::io::Write;
use std::path::PathBuf;
fn main() {
let target = env::var("TARGET").unwrap();
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
let name = env::var("CARGO_PKG_NAME").unwrap();
if target.starts_with("riscv") {
let mut target = Target::from_target_str(&target);
target.retain_extensions("if");
let target = target.to_string();
fs::copy(
format!("bin/trap_{target}.a"),
out_dir.join(format!("lib{name}.a")),
)
.unwrap();
println!("cargo:rustc-link-lib=static={name}");
println!("cargo:rustc-link-search={}", out_dir.display());
// Put the linker script somewhere the linker can find it
fs::File::create(out_dir.join("hal_defaults.x"))
.unwrap()
.write_all(include_bytes!("hal_defaults.x"))
.unwrap();
println!("cargo:rustc-link-search={}", out_dir.display());
}
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=hal_defaults.x");
}