Skip to content

Commit

Permalink
bootstrap: make lld default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
lqd committed Sep 12, 2023
1 parent 567009f commit a9e047f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1427,7 +1427,7 @@ impl Config {
config.incremental = true;
}
set(&mut config.use_lld, rust.use_lld);
set(&mut config.lld_enabled, rust.lld);
config.lld_enabled = rust.lld.unwrap_or(true);
set(&mut config.llvm_tools_enabled, rust.llvm_tools);
config.rustc_parallel = rust.parallel_compiler.unwrap_or(false);
config.rustc_default_linker = rust.default_linker;
Expand Down

0 comments on commit a9e047f

Please sign in to comment.