builder: show the C compiler output on -show-c-output, NOT on -showcc

pull/7057/head
Delyan Angelov 2020-11-30 20:30:38 +02:00
parent ed08d96932
commit ff42572e93
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ fn (mut v Builder) cc() {
}
diff := time.ticks() - ticks
v.timing_message('C ${ccompiler:3}', diff)
if v.pref.is_verbose || v.pref.show_c_output || v.pref.show_cc {
if v.pref.show_c_output {
v.show_c_compiler_output(res)
}
os.chdir(original_pwd)