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";
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue