minxp 0.1.3

Partial reimplementation of std for no-std on unsupported Windows targets.
Documentation
1
2
3
4
5
6
use std::env;

fn main() {
    // same thing as what rust's standard library does
    println!("cargo:rustc-env=MINXP_ENV_ARCH={}", env::var("CARGO_CFG_TARGET_ARCH").unwrap());
}