@@ -97,7 +97,7 @@ pub struct Config {
9797 pub rust_debuginfo_only_std : bool ,
9898 pub rust_debuginfo_tools : bool ,
9999 pub rust_rpath : bool ,
100- pub rustc_parallel_queries : bool ,
100+ pub rustc_parallel : bool ,
101101 pub rustc_default_linker : Option < String > ,
102102 pub rust_optimize_tests : bool ,
103103 pub rust_debuginfo_tests : bool ,
@@ -298,7 +298,7 @@ struct Rust {
298298 debuginfo_lines : Option < bool > ,
299299 debuginfo_only_std : Option < bool > ,
300300 debuginfo_tools : Option < bool > ,
301- experimental_parallel_queries : Option < bool > ,
301+ parallel_compiler : Option < bool > ,
302302 backtrace : Option < bool > ,
303303 default_linker : Option < String > ,
304304 channel : Option < String > ,
@@ -557,7 +557,7 @@ impl Config {
557557 set ( & mut config. lld_enabled , rust. lld ) ;
558558 set ( & mut config. lldb_enabled , rust. lldb ) ;
559559 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 ) ;
561561 config. rustc_default_linker = rust. default_linker . clone ( ) ;
562562 config. musl_root = rust. musl_root . clone ( ) . map ( PathBuf :: from) ;
563563 config. save_toolstates = rust. save_toolstates . clone ( ) . map ( PathBuf :: from) ;
0 commit comments