mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-24 05:01:31 +11:00
7 lines
162 B
Rust
7 lines
162 B
Rust
|
//! This build script makes sure the linker flag -Tdefmt.x is added
|
||
|
//! for the examples.
|
||
|
|
||
|
fn main() {
|
||
|
println!("cargo:rustc-link-arg-examples=-Tdefmt.x");
|
||
|
}
|