We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f09a1 commit 0e79545Copy full SHA for 0e79545
compiler/rustc_codegen_ssa/src/back/link.rs
@@ -843,18 +843,18 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
843
let msg_bus = "clang: error: unable to execute command: Bus error: 10";
844
if out.contains(msg_segv) || out.contains(msg_bus) {
845
warn!(
846
+ ?cmd, %out,
847
"looks like the linker segfaulted when we tried to call it, \
848
automatically retrying again",
- ?cmd, %out,
849
);
850
continue;
851
}
852
853
if is_illegal_instruction(&output.status) {
854
855
+ ?cmd, %out, status = %output.status,
856
"looks like the linker hit an illegal instruction when we \
857
tried to call it, automatically retrying again.",
- ?cmd, %out, status = %output.status,
858
859
860
0 commit comments