File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -547,7 +547,7 @@ impl Config {
547
547
set ( & mut config. lld_enabled , rust. lld ) ;
548
548
set ( & mut config. lldb_enabled , rust. lldb ) ;
549
549
set ( & mut config. llvm_tools_enabled , rust. llvm_tools ) ;
550
- config. rustc_parallel_queries = rust. experimental_parallel_queries . unwrap_or ( false ) ;
550
+ config. rustc_parallel_queries = rust. experimental_parallel_queries . unwrap_or ( true ) ;
551
551
config. rustc_default_linker = rust. default_linker . clone ( ) ;
552
552
config. musl_root = rust. musl_root . clone ( ) . map ( PathBuf :: from) ;
553
553
config. save_toolstates = rust. save_toolstates . clone ( ) . map ( PathBuf :: from) ;
Original file line number Diff line number Diff line change @@ -902,7 +902,7 @@ impl Session {
902
902
/// Returns the number of query threads that should be used for this
903
903
/// compilation
904
904
pub fn query_threads_from_opts ( opts : & config:: Options ) -> usize {
905
- opts. debugging_opts . query_threads . unwrap_or ( 1 )
905
+ opts. debugging_opts . query_threads . unwrap_or ( 4 )
906
906
}
907
907
908
908
/// Returns the number of query threads that should be used for this
You can’t perform that action at this time.
0 commit comments