Skip to content

Commit 8824c91

Browse files
authored
Unrolled build for rust-lang#129473
Rollup merge of rust-lang#129473 - Urgau:fix-llvm-if-unchanged, r=onur-ozkan use `download-ci-llvm=true` in the default compiler config rust-lang@1ca2708 made it so that the `src/llvm-project` submodule has to be checkout for `download-ci-llvm = "if-unchanged"` to know if the submodule has been changed, but that is not required, if the submodule hasn't been checkout it cannot have been modified. ~~This PR restore the previous behavior by only updating the submodule if it has already been checkout.~~ This PR makes `download-ci-llvm = true` check if CI llvm is available and make it the default for the compiler profile, as to prevent unnecessarily checking out `src/llvm-project` with `"if-unchanged"`. r? `````@onur-ozkan`````
2 parents 304b7f8 + 5f367bb commit 8824c91

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

config.example.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
# Unless you're developing for a target where Rust CI doesn't build a compiler
4343
# toolchain or changing LLVM locally, you probably want to leave this enabled.
4444
#
45+
# Set this to `true` to download if CI llvm available otherwise it builds
46+
# from `src/llvm-project`.
47+
#
4548
# Set this to `"if-unchanged"` to download only if the llvm-project has not
4649
# been modified. You can also use this if you are unsure whether you're on a
4750
# tier 1 target. All tier 1 targets are currently supported.
@@ -236,7 +239,7 @@
236239
# Instead of downloading the src/stage0 version of cargo-clippy specified,
237240
# use this cargo-clippy binary instead as the stage0 snapshot cargo-clippy.
238241
#
239-
# Note that this option should be used with the same toolchain as the `rustc` option above.
242+
# Note that this option should be used with the same toolchain as the `rustc` option above.
240243
# Otherwise, clippy is likely to fail due to a toolchain conflict.
241244
#cargo-clippy = "/path/to/cargo-clippy"
242245

src/bootstrap/defaults/config.compiler.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ assertions = false
2727
# Enable warnings during the LLVM compilation (when LLVM is changed, causing a compilation)
2828
enable-warnings = true
2929
# Will download LLVM from CI if available on your platform.
30-
download-ci-llvm = "if-unchanged"
30+
# If you intend to modify `src/llvm-project`, use `"if-unchanged"` or `false` instead.
31+
download-ci-llvm = true

src/bootstrap/src/core/config/config.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2766,7 +2766,8 @@ impl Config {
27662766
);
27672767
}
27682768

2769-
b
2769+
// If download-ci-llvm=true we also want to check that CI llvm is available
2770+
b && llvm::is_ci_llvm_available(self, asserts)
27702771
}
27712772
Some(StringOrBool::String(s)) if s == "if-unchanged" => if_unchanged(),
27722773
Some(StringOrBool::String(other)) => {

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -250,4 +250,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
250250
severity: ChangeSeverity::Info,
251251
summary: "New option `llvm.enzyme` to control whether the llvm based autodiff tool (Enzyme) is built.",
252252
},
253+
ChangeInfo {
254+
change_id: 129473,
255+
severity: ChangeSeverity::Warning,
256+
summary: "`download-ci-llvm = true` now checks if CI llvm is available and has become the default for the compiler profile",
257+
},
253258
];

0 commit comments

Comments
 (0)