Skip to content

Commit a9e047f

Browse files
committed
bootstrap: make lld default to true
1 parent 567009f commit a9e047f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ impl Config {
14271427
config.incremental = true;
14281428
}
14291429
set(&mut config.use_lld, rust.use_lld);
1430-
set(&mut config.lld_enabled, rust.lld);
1430+
config.lld_enabled = rust.lld.unwrap_or(true);
14311431
set(&mut config.llvm_tools_enabled, rust.llvm_tools);
14321432
config.rustc_parallel = rust.parallel_compiler.unwrap_or(false);
14331433
config.rustc_default_linker = rust.default_linker;

0 commit comments

Comments
 (0)