Skip to content

Commit

Permalink
v.builder: reduce the default noise from successfully rebuilding cach…
Browse files Browse the repository at this point in the history
…ed thirdparty object files
  • Loading branch information
spytheman committed Feb 4, 2024
1 parent 8609ea1 commit ff60293
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions vlib/v/builder/cc.v
Expand Up @@ -975,8 +975,11 @@ fn (mut v Builder) build_thirdparty_obj_file(mod string, path string, moduleflag
v.pref.cache_manager.mod_save(mod, '.description.txt', obj_path, '${obj_path:-30} @ ${cmd}\n') or {
panic(err)
}
if res.output != '' {
println(res.output)
$if trace_thirdparty_obj_files ? {
if res.output != '' {
println(res.output)
}
println('>>> build_thirdparty_obj_files done')
}
}

Expand Down

0 comments on commit ff60293

Please sign in to comment.