Skip to content

Commit 4734163

Browse files
kjetilkjekaKjetil Kjeka
authored and
Kjetil Kjeka
committed
Add llvm-bitcode-linker to build manifest
1 parent 6c6b302 commit 4734163

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)