summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/crates/cargo-test-support/build.rs
blob: 478da7d99f35c532b566ad66123e8d9bad702ac6 (plain)
1
2
3
4
5
6
7
fn main() {
    println!(
        "cargo:rustc-env=NATIVE_ARCH={}",
        std::env::var("TARGET").unwrap()
    );
    println!("cargo:rerun-if-changed=build.rs");
}