This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.rs
60 lines (50 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
// NOTE: Adapted from cortex-m/build.rs
// NOTE: Further adapted from riscv-rt/build.rs
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("imc");
let target = target.to_string();
fs::copy(
format!("bin/{}.a", target),
out_dir.join(format!("lib{}.a", name)),
)
.unwrap();
println!("cargo:rustc-link-lib=static={}", name);
println!("cargo:rustc-link-search={}", out_dir.display());
}
if cfg!(feature = "direct-boot") {
// Put the directboot linker script somewhere the linker can find it
fs::File::create(out_dir.join("link.x"))
.unwrap()
.write_all(include_bytes!("link_direct_boot.x"))
.unwrap();
} else {
// Put the baseline linker script somewhere the linker can find it
fs::File::create(out_dir.join("link.x"))
.unwrap()
.write_all(include_bytes!("link.x"))
.unwrap();
};
if cfg!(feature = "esp32c3") {
// Put the esp32-c3 memory layout linker script somewhere the linker can find it
fs::File::create(out_dir.join("memory.x"))
.unwrap()
.write_all(include_bytes!("esp32_c3_memory.x"))
.unwrap();
}
println!("cargo:rustc-link-search={}", out_dir.display());
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=link.x");
println!("cargo:rerun-if-changed=link_direct_boot.x");
println!("cargo:rerun-if-changed=esp32_c3_memory.x");
}