about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-06-11 14:42:06 +0200
committerJakub Beránek <berykubik@gmail.com>2025-06-11 14:42:06 +0200
commit796ee4ff6cbcad73a21dc94ea715364e426475cb (patch)
treed516b8fb00994303759a581461d18675e89b8fba
parent0a39445252ac076ef573bcacee63bbdc59497b52 (diff)
downloadrust-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.rs3
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(())
 }