diff options
| author | onur-ozkan <work@onurozkan.dev> | 2024-04-22 16:44:14 +0300 |
|---|---|---|
| committer | onur-ozkan <work@onurozkan.dev> | 2024-04-22 16:49:15 +0300 |
| commit | 35d14dd96b7847e4fccefea08467efb90ce0e67e (patch) | |
| tree | cc6199718c53bf47ecb61d5cedbfdba9ee261d43 | |
| parent | 290d792411566c94273e5d1a980a1ab91f1d950b (diff) | |
| download | rust-35d14dd96b7847e4fccefea08467efb90ce0e67e.tar.gz rust-35d14dd96b7847e4fccefea08467efb90ce0e67e.zip | |
drop deprecated value `if-available` for `download-ci-llvm` option
It's been 5 months since we deprecated this. It should be fine to drop its support now. Signed-off-by: onur-ozkan <work@onurozkan.dev>
| -rw-r--r-- | src/bootstrap/src/core/config/config.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bootstrap/src/core/config/config.rs b/src/bootstrap/src/core/config/config.rs index 2acce627359..2c85f6b92aa 100644 --- a/src/bootstrap/src/core/config/config.rs +++ b/src/bootstrap/src/core/config/config.rs @@ -2488,11 +2488,6 @@ impl Config { b } - // FIXME: "if-available" is deprecated. Remove this block later (around mid 2024) - // to not break builds between the recent-to-old checkouts. - Some(StringOrBool::String(s)) if s == "if-available" => { - llvm::is_ci_llvm_available(self, asserts) - } Some(StringOrBool::String(s)) if s == "if-unchanged" => if_unchanged(), Some(StringOrBool::String(other)) => { panic!("unrecognized option for download-ci-llvm: {:?}", other) |
