1
Fork 0

lol i forgot the syntax for my own crate's macros

T_____T

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2021-10-07 12:03:15 -07:00
parent b6f09a19b2
commit 0e79545c30
No known key found for this signature in database
GPG key ID: F9C1A595C3814436

View file

@ -843,18 +843,18 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
let msg_bus = "clang: error: unable to execute command: Bus error: 10"; let msg_bus = "clang: error: unable to execute command: Bus error: 10";
if out.contains(msg_segv) || out.contains(msg_bus) { if out.contains(msg_segv) || out.contains(msg_bus) {
warn!( warn!(
?cmd, %out,
"looks like the linker segfaulted when we tried to call it, \ "looks like the linker segfaulted when we tried to call it, \
automatically retrying again", automatically retrying again",
?cmd, %out,
); );
continue; continue;
} }
if is_illegal_instruction(&output.status) { if is_illegal_instruction(&output.status) {
warn!( warn!(
?cmd, %out, status = %output.status,
"looks like the linker hit an illegal instruction when we \ "looks like the linker hit an illegal instruction when we \
tried to call it, automatically retrying again.", tried to call it, automatically retrying again.",
?cmd, %out, status = %output.status,
); );
continue; continue;
} }