Skip to content

Commit 5d813c5

Browse files
authored
Rollup merge of rust-lang#64032 - andjo403:codegen-units, r=Mark-Simulacrum
rustdoc use -Ccodegen-units=1 by default for test compile as the test is small we do not want split up in multiple codegen units and also as there is multiple test running at the same time this will reduce the number of concurrent threads tested the test time with `./x.py test src/libcore --doc` for my 16 core 32 thread cpu i get about 6% faster execution and my 2 core 4 thread cpu I get about 10% faster execution cc rust-lang#63638 r? @Mark-Simulacrum
2 parents ddf1b0c + 0b478e6 commit 5d813c5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/librustdoc/test.rs

+1
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ fn run_test(
263263
for extern_str in &options.extern_strs {
264264
compiler.arg("--extern").arg(&extern_str);
265265
}
266+
compiler.arg("-Ccodegen-units=1");
266267
for codegen_options_str in &options.codegen_options_strs {
267268
compiler.arg("-C").arg(&codegen_options_str);
268269
}

0 commit comments

Comments
 (0)