@@ -97,7 +97,7 @@ pub struct Config {
97
97
pub rust_debuginfo_only_std : bool ,
98
98
pub rust_debuginfo_tools : bool ,
99
99
pub rust_rpath : bool ,
100
- pub rustc_parallel_queries : bool ,
100
+ pub rustc_parallel : bool ,
101
101
pub rustc_default_linker : Option < String > ,
102
102
pub rust_optimize_tests : bool ,
103
103
pub rust_debuginfo_tests : bool ,
@@ -298,7 +298,7 @@ struct Rust {
298
298
debuginfo_lines : Option < bool > ,
299
299
debuginfo_only_std : Option < bool > ,
300
300
debuginfo_tools : Option < bool > ,
301
- experimental_parallel_queries : Option < bool > ,
301
+ parallel_compiler : Option < bool > ,
302
302
backtrace : Option < bool > ,
303
303
default_linker : Option < String > ,
304
304
channel : Option < String > ,
@@ -557,7 +557,7 @@ impl Config {
557
557
set ( & mut config. lld_enabled , rust. lld ) ;
558
558
set ( & mut config. lldb_enabled , rust. lldb ) ;
559
559
set ( & mut config. llvm_tools_enabled , rust. llvm_tools ) ;
560
- config. rustc_parallel_queries = rust. experimental_parallel_queries . unwrap_or ( false ) ;
560
+ config. rustc_parallel = rust. parallel_compiler . unwrap_or ( false ) ;
561
561
config. rustc_default_linker = rust. default_linker . clone ( ) ;
562
562
config. musl_root = rust. musl_root . clone ( ) . map ( PathBuf :: from) ;
563
563
config. save_toolstates = rust. save_toolstates . clone ( ) . map ( PathBuf :: from) ;
0 commit comments