@@ -1072,6 +1072,7 @@ impl Config {
1072
1072
config. bindir = "bin" . into ( ) ;
1073
1073
config. dist_include_mingw_linker = true ;
1074
1074
config. dist_compression_profile = "fast" . into ( ) ;
1075
+ config. rustc_parallel = true ;
1075
1076
1076
1077
config. stdout_is_tty = std:: io:: stdout ( ) . is_terminal ( ) ;
1077
1078
config. stderr_is_tty = std:: io:: stderr ( ) . is_terminal ( ) ;
@@ -1111,7 +1112,7 @@ impl Config {
1111
1112
1112
1113
fn parse_inner ( args : & [ String ] , get_toml : impl Fn ( & Path ) -> TomlConfig ) -> Config {
1113
1114
let mut flags = Flags :: parse ( & args) ;
1114
- let mut config = Config :: default_opts ( ) ;
1115
+ let mut config: Config = Config :: default_opts ( ) ;
1115
1116
1116
1117
// Set flags.
1117
1118
config. paths = std:: mem:: take ( & mut flags. paths ) ;
@@ -1429,7 +1430,9 @@ impl Config {
1429
1430
set ( & mut config. use_lld , rust. use_lld ) ;
1430
1431
set ( & mut config. lld_enabled , rust. lld ) ;
1431
1432
set ( & mut config. llvm_tools_enabled , rust. llvm_tools ) ;
1432
- config. rustc_parallel = rust. parallel_compiler . unwrap_or ( false ) ;
1433
+ config. rustc_parallel = rust
1434
+ . parallel_compiler
1435
+ . unwrap_or ( config. channel == "dev" || config. channel == "nightly" ) ;
1433
1436
config. rustc_default_linker = rust. default_linker ;
1434
1437
config. musl_root = rust. musl_root . map ( PathBuf :: from) ;
1435
1438
config. save_toolstates = rust. save_toolstates . map ( PathBuf :: from) ;
0 commit comments