mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
Unset RUSTC_WRAPPER in cg_clif's build system
This commit is contained in:
parent
b6d74b5e15
commit
fadea8e0ba
@ -105,7 +105,11 @@ impl CargoProject {
|
||||
.arg(self.manifest_path(dirs))
|
||||
.arg("--target-dir")
|
||||
.arg(self.target_dir(dirs))
|
||||
.arg("--locked");
|
||||
.arg("--locked")
|
||||
// bootstrap sets both RUSTC and RUSTC_WRAPPER to the same wrapper. RUSTC is already
|
||||
// respected by the rustc-clif wrapper, but RUSTC_WRAPPER will misinterpret rustc-clif
|
||||
// as filename, so we need to unset it.
|
||||
.env_remove("RUSTC_WRAPPER");
|
||||
|
||||
if dirs.frozen {
|
||||
cmd.arg("--frozen");
|
||||
|
Loading…
Reference in New Issue
Block a user