Files
riscv64-kernel/library/std/build.rs
2026-03-20 09:47:32 +01:00

9 lines
148 B
Rust

use std::env;
pub fn main() {
println!(
"cargo:rustc-env=STD_ENV_ARCH={}",
env::var("CARGO_CFG_TARGET_ARCH").unwrap()
);
}