We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea34bb0 commit 018ed9aCopy full SHA for 018ed9a
src/bootstrap/src/core/config/config.rs
@@ -1916,8 +1916,7 @@ impl Config {
1916
}
1917
1918
1919
- // NOTE: can never be hit when downloading from CI, since we call `check_ci_llvm!(thin_lto)` above.
1920
- if config.llvm_thin_lto && link_shared.is_none() {
+ if !config.llvm_from_ci && config.llvm_thin_lto && link_shared.is_none() {
1921
// If we're building with ThinLTO on, by default we want to link
1922
// to LLVM shared, to avoid re-doing ThinLTO (which happens in
1923
// the link step) with each stage.
0 commit comments