@@ -1154,7 +1154,6 @@ define_config! {
1154
1154
debuginfo_level_tests: Option <DebuginfoLevel > = "debuginfo-level-tests" ,
1155
1155
backtrace: Option <bool > = "backtrace" ,
1156
1156
incremental: Option <bool > = "incremental" ,
1157
- parallel_compiler: Option <bool > = "parallel-compiler" ,
1158
1157
default_linker: Option <String > = "default-linker" ,
1159
1158
channel: Option <String > = "channel" ,
1160
1159
description: Option <String > = "description" ,
@@ -1764,7 +1763,6 @@ impl Config {
1764
1763
debuginfo_level_tests : debuginfo_level_tests_toml,
1765
1764
backtrace,
1766
1765
incremental,
1767
- parallel_compiler,
1768
1766
randomize_layout,
1769
1767
default_linker,
1770
1768
channel : _, // already handled above
@@ -1874,13 +1872,6 @@ impl Config {
1874
1872
config. rust_randomize_layout = randomize_layout. unwrap_or_default ( ) ;
1875
1873
config. llvm_tools_enabled = llvm_tools. unwrap_or ( true ) ;
1876
1874
1877
- // FIXME: Remove this option at the end of 2024.
1878
- if parallel_compiler. is_some ( ) {
1879
- println ! (
1880
- "WARNING: The `rust.parallel-compiler` option is deprecated and does nothing. The parallel compiler (with one thread) is now the default"
1881
- ) ;
1882
- }
1883
-
1884
1875
config. llvm_enzyme =
1885
1876
llvm_enzyme. unwrap_or ( config. channel == "dev" || config. channel == "nightly" ) ;
1886
1877
config. rustc_default_linker = default_linker;
@@ -3222,7 +3213,6 @@ fn check_incompatible_options_for_ci_rustc(
3222
3213
debuginfo_level_tools : _,
3223
3214
debuginfo_level_tests : _,
3224
3215
backtrace : _,
3225
- parallel_compiler : _,
3226
3216
musl_root : _,
3227
3217
verbose_tests : _,
3228
3218
optimize_tests : _,
0 commit comments