Skip to content

Commit

Permalink
Clarify the failure when a compiler bug is detected. (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth authored Aug 19, 2024
1 parent bddeebe commit f5c3f45
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions aws-lc-sys/builder/cc_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,12 +255,12 @@ impl CcBuilder {
let result = execute_command(exec_path.as_os_str(), &[]);
assert!(
result.status,
"Your compiler ({}) is not supported due to a memcmp related bug reported in \
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95189.\
We strongly recommend against using this compiler.\
EXECUTED: {} \
ERROR: {} \
OUTPUT: {} \
"### COMPILER BUG DETECTED ###\nYour compiler ({}) is not supported due to a memcmp related bug reported in \
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95189. \
We strongly recommend against using this compiler. \n\
EXECUTED: {}\n\
ERROR: {}\n\
OUTPUT: {}\n\
",
memcmp_compiler.path().display(),
memcmp_compile_result.executed,
Expand Down

0 comments on commit f5c3f45

Please sign in to comment.