File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
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 @@ -841,7 +841,7 @@ impl Session {
841
841
842
842
#[ inline( always) ]
843
843
pub fn profiler < F : FnOnce ( & mut SelfProfiler ) -> ( ) > ( & self , f : F ) {
844
- if unlikely ! ( self . self_profiling_active ) {
844
+ if unlikely ! ( false ) {
845
845
self . profiler_active ( f)
846
846
}
847
847
}
@@ -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 ( 8 )
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