mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 13:49:13 +00:00
9 lines
291 B
Rust
9 lines
291 B
Rust
fn main() {
|
|
// If "std" is explicitly requested, don't bother probing the target for it.
|
|
match std::env::var_os("CARGO_FEATURE_STD") {
|
|
Some(_) => autocfg::emit("has_std"),
|
|
None => autocfg::new().emit_sysroot_crate("std"),
|
|
}
|
|
autocfg::rerun_path("build.rs");
|
|
}
|