We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c73a46c commit e0f5c6dCopy full SHA for e0f5c6d
src/bootstrap/dist.rs
@@ -2067,11 +2067,8 @@ impl Step for RustDev {
2067
2068
builder.ensure(crate::native::Llvm { target });
2069
2070
- // If the config has LLD enabled, ensure its step. We'll we want to package it, and use it
2071
- // in download-ci-llvm.
2072
- if builder.config.lld_enabled {
2073
- builder.ensure(crate::native::Lld { target });
2074
- }
+ // We want to package `lld` to use it with `download-ci-llvm`.
+ builder.ensure(crate::native::Lld { target });
2075
2076
let src_bindir = builder.llvm_out(target).join("bin");
2077
// If updating this list, you likely want to change
0 commit comments