diff options
| author | Eliza Weisman <eliza@buoyant.io> | 2021-10-07 12:03:15 -0700 |
|---|---|---|
| committer | Eliza Weisman <eliza@buoyant.io> | 2021-10-07 12:03:15 -0700 |
| commit | 0e79545c306ca173fc406b61a81ea4e14400d293 (patch) | |
| tree | ff7ea399a80242b5882726c1fa4ba09d9013935e /compiler/rustc_codegen_ssa/src/back | |
| parent | b6f09a19b2345a6a898d176570496dea44b06aac (diff) | |
| download | rust-0e79545c306ca173fc406b61a81ea4e14400d293.tar.gz rust-0e79545c306ca173fc406b61a81ea4e14400d293.zip | |
lol i forgot the syntax for my own crate's macros
T_____T Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/link.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs index b5429064324..fd59bdca133 100644 --- a/compiler/rustc_codegen_ssa/src/back/link.rs +++ b/compiler/rustc_codegen_ssa/src/back/link.rs @@ -843,18 +843,18 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>( let msg_bus = "clang: error: unable to execute command: Bus error: 10"; if out.contains(msg_segv) || out.contains(msg_bus) { warn!( + ?cmd, %out, "looks like the linker segfaulted when we tried to call it, \ automatically retrying again", - ?cmd, %out, ); continue; } if is_illegal_instruction(&output.status) { warn!( + ?cmd, %out, status = %output.status, "looks like the linker hit an illegal instruction when we \ tried to call it, automatically retrying again.", - ?cmd, %out, status = %output.status, ); continue; } |
