needs newer fixed cortex-m-rt 0.6.13+unreleased relevant? https://reviews.llvm.org/D81986
10 lines
200 B
Rust
10 lines
200 B
Rust
fn main() {
|
|
println!("cargo:rerun-if-changed=memory.x");
|
|
|
|
cc::Build::new()
|
|
.file("src/startup.S")
|
|
.compile("startup");
|
|
println!("cargo:rerun-if-changed=src/startup.S");
|
|
}
|
|
|