about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-09-07 23:30:16 +0200
committerGitHub <noreply@github.com>2024-09-07 23:30:16 +0200
commit4ba483d68b1dc6c73b65507194035d7c09122d2f (patch)
treef4c424c63775607297fcae716fc763ab906c36fa /src/bootstrap
parent0dc9f1ac90b389fc71c539146d015c5416100a21 (diff)
parent11ee513f4c60a23aafb4268c4e4d3ed43daac69f (diff)
downloadrust-4ba483d68b1dc6c73b65507194035d7c09122d2f.tar.gz
rust-4ba483d68b1dc6c73b65507194035d7c09122d2f.zip
Rollup merge of #130059 - gurry:130039-remove-skip-rebuild, r=Kobzol
Remove the unused  `llvm-skip-rebuild` option from x.py

Fixes #130039
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/src/core/config/flags.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bootstrap/src/core/config/flags.rs b/src/bootstrap/src/core/config/flags.rs
index c3f17402814..effc5f50911 100644
--- a/src/bootstrap/src/core/config/flags.rs
+++ b/src/bootstrap/src/core/config/flags.rs
@@ -143,9 +143,6 @@ pub struct Flags {
     /// Unless you know exactly what you are doing, you probably don't need this.
     pub bypass_bootstrap_lock: bool,
 
-    /// whether rebuilding llvm should be skipped, overriding `skip-rebuld` in config.toml
-    #[arg(global = true, long, value_name = "VALUE")]
-    pub llvm_skip_rebuild: Option<bool>,
     /// generate PGO profile with rustc build
     #[arg(global = true, value_hint = clap::ValueHint::FilePath, long, value_name = "PROFILE")]
     pub rust_profile_generate: Option<String>,