We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8754af commit 3d7be5fCopy full SHA for 3d7be5f
vlib/v/builder/cc.v
@@ -33,6 +33,9 @@ fn (mut v Builder) post_process_c_compiler_output(ccompiler string, res os.Resul
33
if v.pref.reuse_tmpc {
34
return
35
}
36
+ if os.getenv('V_NO_RM_CLEANUP_FILES') != '' {
37
+ return
38
+ }
39
for tmpfile in v.pref.cleanup_files {
40
if os.is_file(tmpfile) {
41
if v.pref.is_verbose {
0 commit comments