mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 00:53:04 +00:00
8 lines
204 B
Rust
8 lines
204 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");
|
|
}
|
|
}
|