Skip to content

Commit

Permalink
rustdoc use -Ccodegen-units=1 by default for test compile
Browse files Browse the repository at this point in the history
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
  • Loading branch information
andjo403 committed Aug 30, 2019
1 parent 0f41401 commit 0b478e6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/librustdoc/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ fn run_test(
for extern_str in &options.extern_strs {
compiler.arg("--extern").arg(&extern_str);
}
compiler.arg("-Ccodegen-units=1");
for codegen_options_str in &options.codegen_options_strs {
compiler.arg("-C").arg(&codegen_options_str);
}
Expand Down

0 comments on commit 0b478e6

Please sign in to comment.