9front - general discussion about 9front
 help / color / mirror / Atom feed
* [9front] Patch cc to create .$O files with DMTMP
@ 2021-06-07  1:08 Jacob Moody
  2021-06-08 21:39 ` ori
  0 siblings, 1 reply; 5+ messages in thread
From: Jacob Moody @ 2021-06-07  1:08 UTC (permalink / raw)
  To: 9front

Hello,

I often have times where I find I have left build artifacts around the system from forgetting
to run mk clean. I thought it might be nice for the compiler to create the files with DMTMP
to prevent them from getting added to fs dumps.


Thanks,
moody

--- //.git/fs/object/6ae0cd0d48a1b852f4a00c09aa8056e9062b1cf1/tree/sys/src/cmd/cc/lex.c
+++ sys/src/cmd/cc/lex.c
@@ -229,7 +229,7 @@
 			dup(2, 1);
 		}
 	} else {
-		c = mycreat(outfile, 0664);
+		c = mycreat(outfile, 0664 | DMTMP);
 		if(c < 0) {
 			diag(Z, "cannot open %s - %r", outfile);
 			outfile = 0;


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-06-10 12:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-07  1:08 [9front] Patch cc to create .$O files with DMTMP Jacob Moody
2021-06-08 21:39 ` ori
2021-06-08 23:55   ` Anthony Martin
2021-06-09  0:24     ` kvik
2021-06-09 11:58     ` Jacob Moody

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).