Skip to content

Commit 84e9308

Browse files
committed
Auto merge of #134866 - osiewicz:write-rlib-bufwriter, r=bjorn3
rustc_codegen_ssa: Buffer file writes in link_rlib This makes this step take ~25ms on my machine (M3 Max 64GB) for Zed repo instead of ~150ms (on editor crate). Additionally it takes down the time needed for a clean cargo build of ripgrep from ~6.1s to 5.9s. This change is mostly relevant for dev builds of crates with multiple large CGUs. I imagine it could be quite relevant for dev scenarios on Windows, but sadly I have no way to measure that myself.
2 parents 8cdc67e + 586a805 commit 84e9308

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

compiler/rustc_codegen_ssa/src/back/archive.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::env;
22
use std::error::Error;
33
use std::ffi::OsString;
44
use std::fs::{self, File};
5-
use std::io::{self, Write};
5+
use std::io::{self, BufWriter, Write};
66
use std::path::{Path, PathBuf};
77

88
use ar_archive_writer::{
@@ -509,16 +509,19 @@ impl<'a> ArArchiveBuilder<'a> {
509509
io_error_context("couldn't create a directory for the temp file", err)
510510
})?;
511511
let archive_tmpfile_path = archive_tmpdir.path().join("tmp.a");
512-
let mut archive_tmpfile = File::create_new(&archive_tmpfile_path)
512+
let archive_tmpfile = File::create_new(&archive_tmpfile_path)
513513
.map_err(|err| io_error_context("couldn't create the temp file", err))?;
514514

515+
let mut archive_tmpfile = BufWriter::new(archive_tmpfile);
515516
write_archive_to_stream(
516517
&mut archive_tmpfile,
517518
&entries,
518519
archive_kind,
519520
false,
520521
/* is_ec = */ self.sess.target.arch == "arm64ec",
521522
)?;
523+
archive_tmpfile.flush()?;
524+
drop(archive_tmpfile);
522525

523526
let any_entries = !entries.is_empty();
524527
drop(entries);

0 commit comments

Comments
 (0)