We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb47525 commit 5de35b6Copy full SHA for 5de35b6
src/bootstrap/src/core/config/config.rs
@@ -1908,8 +1908,7 @@ impl Config {
1908
}
1909
1910
1911
- // NOTE: can never be hit when downloading from CI, since we call `check_ci_llvm!(thin_lto)` above.
1912
- if config.llvm_thin_lto && link_shared.is_none() {
+ if !config.llvm_from_ci && config.llvm_thin_lto && link_shared.is_none() {
1913
// If we're building with ThinLTO on, by default we want to link
1914
// to LLVM shared, to avoid re-doing ThinLTO (which happens in
1915
// the link step) with each stage.
0 commit comments