Skip to content

Commit 33f78c7

Browse files
Aaron1011bjorn3
authored andcommitted
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 d015f0d commit 33f78c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ impl Config {
853853
set(&mut config.use_lld, rust.use_lld);
854854
set(&mut config.lld_enabled, rust.lld);
855855
set(&mut config.llvm_tools_enabled, rust.llvm_tools);
856-
config.rustc_parallel = rust.parallel_compiler.unwrap_or(false);
856+
config.rustc_parallel = rust.parallel_compiler.unwrap_or(true);
857857
config.rustc_default_linker = rust.default_linker;
858858
config.musl_root = rust.musl_root.map(PathBuf::from);
859859
config.save_toolstates = rust.save_toolstates.map(PathBuf::from);

0 commit comments

Comments
 (0)