File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compiler/rustc_codegen_ssa/src/back Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -843,18 +843,18 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
843
843
let msg_bus = "clang: error: unable to execute command: Bus error: 10" ;
844
844
if out. contains ( msg_segv) || out. contains ( msg_bus) {
845
845
warn ! (
846
+ ?cmd, %out,
846
847
"looks like the linker segfaulted when we tried to call it, \
847
848
automatically retrying again",
848
- ?cmd, %out,
849
849
) ;
850
850
continue ;
851
851
}
852
852
853
853
if is_illegal_instruction ( & output. status ) {
854
854
warn ! (
855
+ ?cmd, %out, status = %output. status,
855
856
"looks like the linker hit an illegal instruction when we \
856
857
tried to call it, automatically retrying again.",
857
- ?cmd, %out, status = %output. status,
858
858
) ;
859
859
continue ;
860
860
}
You can’t perform that action at this time.
0 commit comments