Skip to content

Commit 7d5e9fd

Browse files
authored
Unrolled build for rust-lang#124071
Rollup merge of rust-lang#124071 - kjetilkjeka:llvm_bitcode_linker_build_manifest, r=Mark-Simulacrum Add llvm-bitcode-linker to build manifest When creating rust-lang#123423 I didn't realize I also had to add the new component to the build-manifest. This PR finishes the work of adding it, by also adding it to the build manifest. r? ``@Mark-Simulacrum``
2 parents dbce3b4 + 4734163 commit 7d5e9fd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/tools/build-manifest/src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,8 @@ impl Builder {
464464
| PkgType::LlvmTools
465465
| PkgType::RustAnalysis
466466
| PkgType::JsonDocs
467-
| PkgType::RustcCodegenCranelift => {
467+
| PkgType::RustcCodegenCranelift
468+
| PkgType::LlvmBitcodeLinker => {
468469
extensions.push(host_component(pkg));
469470
}
470471
PkgType::RustcDev | PkgType::RustcDocs => {

src/tools/build-manifest/src/versions.rs

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ pkg_type! {
5858
Miri = "miri"; preview = true,
5959
JsonDocs = "rust-docs-json"; preview = true,
6060
RustcCodegenCranelift = "rustc-codegen-cranelift"; preview = true,
61+
LlvmBitcodeLinker = "llvm-bitcode-linker"; preview = true,
6162
}
6263

6364
impl PkgType {
@@ -94,6 +95,7 @@ impl PkgType {
9495
PkgType::ReproducibleArtifacts => true,
9596
PkgType::RustMingw => true,
9697
PkgType::RustAnalysis => true,
98+
PkgType::LlvmBitcodeLinker => true,
9799
}
98100
}
99101

@@ -121,6 +123,7 @@ impl PkgType {
121123
Rustfmt => HOSTS,
122124
RustAnalysis => TARGETS,
123125
LlvmTools => TARGETS,
126+
LlvmBitcodeLinker => HOSTS,
124127
}
125128
}
126129

0 commit comments

Comments
 (0)