diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-06-11 14:42:06 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-06-11 14:42:06 +0200 |
| commit | 796ee4ff6cbcad73a21dc94ea715364e426475cb (patch) | |
| tree | d516b8fb00994303759a581461d18675e89b8fba | |
| parent | 0a39445252ac076ef573bcacee63bbdc59497b52 (diff) | |
| download | rust-796ee4ff6cbcad73a21dc94ea715364e426475cb.tar.gz rust-796ee4ff6cbcad73a21dc94ea715364e426475cb.zip | |
Do not warn on `rust.incremental` when using download CI rustc
| -rw-r--r-- | src/bootstrap/src/core/config/toml/rust.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/src/core/config/toml/rust.rs b/src/bootstrap/src/core/config/toml/rust.rs index 81f95f356a5..bb18fa802af 100644 --- a/src/bootstrap/src/core/config/toml/rust.rs +++ b/src/bootstrap/src/core/config/toml/rust.rs @@ -321,11 +321,11 @@ pub fn check_incompatible_options_for_ci_rustc( rpath, channel, description, - incremental, default_linker, std_features, // Rest of the options can simply be ignored. + incremental: _, debug: _, codegen_units: _, codegen_units_std: _, @@ -389,7 +389,6 @@ pub fn check_incompatible_options_for_ci_rustc( warn!(current_rust_config.channel, channel, "rust"); warn!(current_rust_config.description, description, "rust"); - warn!(current_rust_config.incremental, incremental, "rust"); Ok(()) } |
