compiler-builtins-zynq/build.rs

8 lines
141 B
Rust
Raw Normal View History

use std::env;
fn main() {
if env::var("TARGET").unwrap().ends_with("gnueabihf") {
println!("cargo:rustc-cfg=gnueabihf")
}
}