File tree 2 files changed +5
-1
lines changed
src/tools/build-manifest/src
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -464,7 +464,8 @@ impl Builder {
464
464
| PkgType :: LlvmTools
465
465
| PkgType :: RustAnalysis
466
466
| PkgType :: JsonDocs
467
- | PkgType :: RustcCodegenCranelift => {
467
+ | PkgType :: RustcCodegenCranelift
468
+ | PkgType :: LlvmBitcodeLinker => {
468
469
extensions. push ( host_component ( pkg) ) ;
469
470
}
470
471
PkgType :: RustcDev | PkgType :: RustcDocs => {
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ pkg_type! {
58
58
Miri = "miri" ; preview = true ,
59
59
JsonDocs = "rust-docs-json" ; preview = true ,
60
60
RustcCodegenCranelift = "rustc-codegen-cranelift" ; preview = true ,
61
+ LlvmBitcodeLinker = "llvm-bitcode-linker" ; preview = true ,
61
62
}
62
63
63
64
impl PkgType {
@@ -94,6 +95,7 @@ impl PkgType {
94
95
PkgType :: ReproducibleArtifacts => true ,
95
96
PkgType :: RustMingw => true ,
96
97
PkgType :: RustAnalysis => true ,
98
+ PkgType :: LlvmBitcodeLinker => true ,
97
99
}
98
100
}
99
101
@@ -121,6 +123,7 @@ impl PkgType {
121
123
Rustfmt => HOSTS ,
122
124
RustAnalysis => TARGETS ,
123
125
LlvmTools => TARGETS ,
126
+ LlvmBitcodeLinker => HOSTS ,
124
127
}
125
128
}
126
129
You can’t perform that action at this time.
0 commit comments