We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 312c9a3 commit 6eb205dCopy full SHA for 6eb205d
src/bootstrap/dist.rs
@@ -2067,6 +2067,12 @@ 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
+ }
2075
+
2076
let src_bindir = builder.llvm_out(target).join("bin");
2077
// If updating this list, you likely want to change
2078
// src/bootstrap/download-ci-llvm-stamp as well, otherwise local users
0 commit comments