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:
parent
b6f09a19b2
commit
0e79545c30
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue