mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
7 lines
118 B
Rust
7 lines
118 B
Rust
fn main() {
|
|
println!(
|
|
"cargo:rustc-env=NATIVE_ARCH={}",
|
|
std::env::var("TARGET").unwrap()
|
|
);
|
|
}
|