bootstrap: Move RUSTC_BREAK_ON_ICE
out of shim
This is always set, so let's just always set it elsewhere to reduce the need for our `rustc.rs` shim.
This commit is contained in:
parent
557e69b7ca
commit
4f35166f80
@ -97,8 +97,6 @@ fn main() {
|
||||
cmd.env("RUST_BACKTRACE", "1");
|
||||
}
|
||||
|
||||
cmd.env("RUSTC_BREAK_ON_ICE", "1");
|
||||
|
||||
if let Ok(debuginfo_level) = env::var("RUSTC_DEBUGINFO_LEVEL") {
|
||||
cmd.arg(format!("-Cdebuginfo={}", debuginfo_level));
|
||||
}
|
||||
|
@ -917,7 +917,8 @@ pub fn cargo(
|
||||
PathBuf::from("/path/to/nowhere/rustdoc/not/required")
|
||||
},
|
||||
)
|
||||
.env("RUSTC_ERROR_METADATA_DST", self.extended_error_dir());
|
||||
.env("RUSTC_ERROR_METADATA_DST", self.extended_error_dir())
|
||||
.env("RUSTC_BREAK_ON_ICE", "1");
|
||||
|
||||
if let Some(host_linker) = self.linker(compiler.host) {
|
||||
cargo.env("RUSTC_HOST_LINKER", host_linker);
|
||||
|
Loading…
Reference in New Issue
Block a user