Ed Page befb66d9ce style(test): Remove check-cfg warning
This is currently breaking CI because we run effectively `RUSTDOCFLAGS=-Dwarnings cargo +nightly doc`
2024-05-06 16:52:29 +02:00

11 lines
277 B
Rust

#![allow(clippy::disallowed_methods)]
fn main() {
println!("cargo:rustc-check-cfg=cfg(emulate_second_only_system)");
println!(
"cargo:rustc-env=NATIVE_ARCH={}",
std::env::var("TARGET").unwrap()
);
println!("cargo:rerun-if-changed=build.rs");
}