Add build.rs to detect armv6

This commit is contained in:
Ulf Lilleengen
2022-06-27 14:24:19 +02:00
parent 776be79f7b
commit f1f90b17b5
3 changed files with 12 additions and 6 deletions

View 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");
}
}