]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/build.rs
Rollup merge of #107740 - oli-obk:lock_tcx, r=petrochenkov
[rust.git] / src / bootstrap / build.rs
1 use std::env;
2
3 fn main() {
4     let host = env::var("HOST").unwrap();
5     println!("cargo:rerun-if-changed=build.rs");
6     println!("cargo:rustc-env=BUILD_TRIPLE={}", host);
7 }