Add build.rs to detect armv6
This commit is contained in:
11
embassy-boot/stm32/build.rs
Normal file
11
embassy-boot/stm32/build.rs
Normal file
@ -0,0 +1,11 @@
|
||||
use std::env;
|
||||
use std::fs::File;
|
||||
use std::io::Write;
|
||||
use std::path::PathBuf;
|
||||
|
||||
fn main() {
|
||||
let target = env::var("TARGET").unwrap();
|
||||
if target.starts_with("thumbv6m-") {
|
||||
println!("cargo:rustc-cfg=armv6m");
|
||||
}
|
||||
}
|
@ -24,9 +24,4 @@ fn main() {
|
||||
if env::var("CARGO_FEATURE_DEFMT").is_ok() {
|
||||
println!("cargo:rustc-link-arg-bins=-Tdefmt.x");
|
||||
}
|
||||
|
||||
let target = env::var("TARGET").unwrap();
|
||||
if target.starts_with("thumbv6m-") {
|
||||
println!("cargo:rustc-cfg=armv6m");
|
||||
}
|
||||
}
|
||||
|
Submodule stm32-data updated: fa294eae79...56d5b8b2ae
Reference in New Issue
Block a user