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";
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;
}