about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-06-11 22:58:29 +0200
committerGitHub <noreply@github.com>2025-06-11 22:58:29 +0200
commite80be0bcba74261583c230cfdfda2a049e9f0079 (patch)
tree99da0e2ae79767acfe3d47e3ce6e5927a0c8aabe
parente78b619cad4f8b642028ec02def0f8cc4be0abdd (diff)
parent796ee4ff6cbcad73a21dc94ea715364e426475cb (diff)
downloadrust-e80be0bcba74261583c230cfdfda2a049e9f0079.tar.gz
rust-e80be0bcba74261583c230cfdfda2a049e9f0079.zip
Rollup merge of #142364 - Kobzol:download-ci-incremental-warning-remove, r=RalfJung
Do not warn on `rust.incremental` when using download CI rustc

Discussed on Zulip.

r? `@RalfJung`
-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(())
 }