Skip to content

Commit a90aa76

Browse files
committed
[DO NOT MERGE] Enable parallel compiler by default
It's been over a year since we last tried this - let's see what the performance looks like now.
1 parent 33c96b4 commit a90aa76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ impl Config {
657657
set(&mut config.use_lld, rust.use_lld);
658658
set(&mut config.lld_enabled, rust.lld);
659659
set(&mut config.llvm_tools_enabled, rust.llvm_tools);
660-
config.rustc_parallel = rust.parallel_compiler.unwrap_or(false);
660+
config.rustc_parallel = rust.parallel_compiler.unwrap_or(true);
661661
config.rustc_default_linker = rust.default_linker.clone();
662662
config.musl_root = rust.musl_root.clone().map(PathBuf::from);
663663
config.save_toolstates = rust.save_toolstates.clone().map(PathBuf::from);

0 commit comments

Comments
 (0)