Skip to content

Commit 68e4f7d

Browse files
committed
bootstrap: make lld true with download-ci-llvm
1 parent 567009f commit 68e4f7d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/bootstrap/config.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1580,6 +1580,10 @@ impl Config {
15801580
config.channel == "dev" && crate::llvm::is_ci_llvm_available(&config, false);
15811581
}
15821582

1583+
if config.llvm_from_ci {
1584+
config.lld_enabled = true;
1585+
}
1586+
15831587
if let Some(t) = toml.target {
15841588
for (triple, cfg) in t {
15851589
let mut target = Target::from_triple(&triple);

0 commit comments

Comments
 (0)