mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-27 19:56:39 +00:00
7 lines
195 B
Rust
7 lines
195 B
Rust
fn main() {
|
|
let target = std::env::var("TARGET").expect("TARGET environment variable not defined");
|
|
if target.contains("neon") {
|
|
println!("cargo:rustc-cfg=libcore_neon");
|
|
}
|
|
}
|