6 lines
230 B
Rust
Raw Permalink Normal View History

2025-02-24 23:16:48 +01:00
fn main() {
// Rebuild if memory.x file was rebuild.
// Linker seems to pick it up automatically.
// (via the include in link.x which is added with a linker argument!)
println!("cargo:rerun-if-changed=memory.x");
}