mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-03 15:40:21 +00:00
8 lines
142 B
Rust
8 lines
142 B
Rust
|
use std::env;
|
||
|
|
||
|
fn main() {
|
||
|
let linker_file = env::var("LINKER_FILE").unwrap();
|
||
|
|
||
|
println!("cargo:rerun-if-changed={}", linker_file);
|
||
|
}
|