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 @@ -553,7 +553,7 @@ impl Config {
553
553
set ( & mut config. lld_enabled , rust. lld ) ;
554
554
set ( & mut config. lldb_enabled , rust. lldb ) ;
555
555
set ( & mut config. llvm_tools_enabled , rust. llvm_tools ) ;
556
- config. rustc_parallel_queries = rust. experimental_parallel_queries . unwrap_or ( false ) ;
556
+ config. rustc_parallel_queries = rust. experimental_parallel_queries . unwrap_or ( true ) ;
557
557
config. rustc_default_linker = rust. default_linker . clone ( ) ;
558
558
config. musl_root = rust. musl_root . clone ( ) . map ( PathBuf :: from) ;
559
559
config. save_toolstates = rust. save_toolstates . clone ( ) . map ( PathBuf :: from) ;
Original file line number Diff line number Diff line change @@ -888,7 +888,7 @@ impl Session {
888
888
/// Returns the number of query threads that should be used for this
889
889
/// compilation
890
890
pub fn query_threads_from_opts ( opts : & config:: Options ) -> usize {
891
- opts. debugging_opts . query_threads . unwrap_or ( 1 )
891
+ opts. debugging_opts . query_threads . unwrap_or ( 4 )
892
892
}
893
893
894
894
/// Returns the number of query threads that should be used for this
You can’t perform that action at this time.
0 commit comments