加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.rs 1012 Bytes
一键复制 编辑 原始数据 按行查看 历史
use std::env;
include!("src/dist/triple.rs");
fn from_build() -> Result<PartialTargetTriple, String> {
let triple = if let Ok(triple) = env::var("RUSTUP_OVERRIDE_BUILD_TRIPLE") {
triple
} else {
env::var("TARGET").unwrap()
};
PartialTargetTriple::new(&triple).ok_or(triple)
}
fn main() {
println!("cargo:rerun-if-env-changed=RUSTUP_OVERRIDE_BUILD_TRIPLE");
println!("cargo:rerun-if-env-changed=TARGET");
match from_build() {
Ok(triple) => eprintln!("Computed build based partial target triple: {:#?}", triple),
Err(s) => {
eprintln!("Unable to parse target '{}' as a PartialTargetTriple", s);
eprintln!(
"If you are attempting to bootstrap a new target you may need to adjust the\n\
permitted values found in src/dist/triple.rs"
);
std::process::abort();
}
}
let target = env::var("TARGET").unwrap();
println!("cargo:rustc-env=TARGET={}", target);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化