Skip to content

Commit 0e76967

Browse files
committed
test
1 parent 2f35a10 commit 0e76967

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bootstrap/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ impl Config {
553553
set(&mut config.lld_enabled, rust.lld);
554554
set(&mut config.lldb_enabled, rust.lldb);
555555
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);
557557
config.rustc_default_linker = rust.default_linker.clone();
558558
config.musl_root = rust.musl_root.clone().map(PathBuf::from);
559559
config.save_toolstates = rust.save_toolstates.clone().map(PathBuf::from);

src/librustc/session/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ impl Session {
888888
/// Returns the number of query threads that should be used for this
889889
/// compilation
890890
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)
892892
}
893893

894894
/// Returns the number of query threads that should be used for this

0 commit comments

Comments
 (0)