File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -97,8 +97,6 @@ fn main() {
97
97
cmd. env ( "RUST_BACKTRACE" , "1" ) ;
98
98
}
99
99
100
- cmd. env ( "RUSTC_BREAK_ON_ICE" , "1" ) ;
101
-
102
100
if let Ok ( debuginfo_level) = env:: var ( "RUSTC_DEBUGINFO_LEVEL" ) {
103
101
cmd. arg ( format ! ( "-Cdebuginfo={}" , debuginfo_level) ) ;
104
102
}
Original file line number Diff line number Diff line change @@ -917,7 +917,8 @@ impl<'a> Builder<'a> {
917
917
PathBuf :: from ( "/path/to/nowhere/rustdoc/not/required" )
918
918
} ,
919
919
)
920
- . env ( "RUSTC_ERROR_METADATA_DST" , self . extended_error_dir ( ) ) ;
920
+ . env ( "RUSTC_ERROR_METADATA_DST" , self . extended_error_dir ( ) )
921
+ . env ( "RUSTC_BREAK_ON_ICE" , "1" ) ;
921
922
922
923
if let Some ( host_linker) = self . linker ( compiler. host ) {
923
924
cargo. env ( "RUSTC_HOST_LINKER" , host_linker) ;
You can’t perform that action at this time.
0 commit comments