mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-02 21:18:11 +00:00
8 lines
141 B
Rust
8 lines
141 B
Rust
use std::env;
|
|
|
|
fn main() {
|
|
if env::var("TARGET").unwrap().ends_with("gnueabihf") {
|
|
println!("cargo:rustc-cfg=gnueabihf")
|
|
}
|
|
}
|