mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
653 B
Rust
15 lines
653 B
Rust
use std::env;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-env-changed=CARGO_CFG_BPF_TARGET_ARCH");
|
|
if let Ok(arch) = env::var("CARGO_CFG_BPF_TARGET_ARCH") {
|
|
println!("cargo:rustc-cfg=bpf_target_arch=\"{arch}\"");
|
|
} else {
|
|
let arch = env::var("HOST").unwrap();
|
|
let arch = arch.split_once('-').map_or(&*arch, |x| x.0);
|
|
println!("cargo:rustc-cfg=bpf_target_arch=\"{arch}\"");
|
|
}
|
|
println!("cargo::rustc-check-cfg=cfg(bpf_target_arch, values(\"x86_64\",\"arm\",\"aarch64\",\"riscv64\",\"powerpc64\",\"s390x\"))");
|
|
println!("cargo::rustc-check-cfg=cfg(target_arch, values(\"asmjs\",\"nvptx\",\"xtensa\"))");
|
|
}
|