This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
build.rs
49 lines (40 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
49
// NOTE: Adapted from cortex-m/build.rs
use riscv_target::Target;
use std::{env, fs, io, path::PathBuf};
fn add_linker_script(arch_width: u32) -> io::Result<()> {
// Read the file to a string and replace all occurrences of ${ARCH_WIDTH} with the arch width
let mut content = fs::read_to_string("link.x.in")?;
content = content.replace("${ARCH_WIDTH}", &arch_width.to_string());
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("link.x"), content)?;
println!("cargo:rustc-link-search={}", out_dir.display());
println!("cargo:rerun-if-changed=link.x");
Ok(())
}
fn main() {
let target = env::var("TARGET").unwrap();
let _name = env::var("CARGO_PKG_NAME").unwrap();
// set configuration flags depending on the target
if target.starts_with("riscv") {
println!("cargo:rustc-cfg=riscv");
let target = Target::from_target_str(&target);
// generate the linker script
let arch_width = match target.bits {
32 => {
println!("cargo:rustc-cfg=riscv32");
4
}
64 => {
println!("cargo:rustc-cfg=riscv64");
8
}
_ => panic!("Unsupported bit width"),
};
add_linker_script(arch_width).unwrap();
// expose the ISA extensions
if target.has_extension('m') {
println!("cargo:rustc-cfg=riscvm");
}
}
}