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>>(
843843 let msg_bus = "clang: error: unable to execute command: Bus error: 10" ;
844844 if out. contains ( msg_segv) || out. contains ( msg_bus) {
845845 warn ! (
846+ ?cmd, %out,
846847 "looks like the linker segfaulted when we tried to call it, \
847848 automatically retrying again",
848- ?cmd, %out,
849849 ) ;
850850 continue ;
851851 }
852852
853853 if is_illegal_instruction ( & output. status ) {
854854 warn ! (
855+ ?cmd, %out, status = %output. status,
855856 "looks like the linker hit an illegal instruction when we \
856857 tried to call it, automatically retrying again.",
857- ?cmd, %out, status = %output. status,
858858 ) ;
859859 continue ;
860860 }
You can’t perform that action at this time.
0 commit comments