Rollup merge of #124071 - kjetilkjeka:llvm_bitcode_linker_build_manifest, r=Mark-Simulacrum
Add llvm-bitcode-linker to build manifest When creating #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``
This commit is contained in:
commit
29ee276368
@ -464,7 +464,8 @@ impl Builder {
|
||||
| PkgType::LlvmTools
|
||||
| PkgType::RustAnalysis
|
||||
| PkgType::JsonDocs
|
||||
| PkgType::RustcCodegenCranelift => {
|
||||
| PkgType::RustcCodegenCranelift
|
||||
| PkgType::LlvmBitcodeLinker => {
|
||||
extensions.push(host_component(pkg));
|
||||
}
|
||||
PkgType::RustcDev | PkgType::RustcDocs => {
|
||||
|
@ -58,6 +58,7 @@ pkg_type! {
|
||||
Miri = "miri"; preview = true,
|
||||
JsonDocs = "rust-docs-json"; preview = true,
|
||||
RustcCodegenCranelift = "rustc-codegen-cranelift"; preview = true,
|
||||
LlvmBitcodeLinker = "llvm-bitcode-linker"; preview = true,
|
||||
}
|
||||
|
||||
impl PkgType {
|
||||
@ -94,6 +95,7 @@ impl PkgType {
|
||||
PkgType::ReproducibleArtifacts => true,
|
||||
PkgType::RustMingw => true,
|
||||
PkgType::RustAnalysis => true,
|
||||
PkgType::LlvmBitcodeLinker => true,
|
||||
}
|
||||
}
|
||||
|
||||
@ -121,6 +123,7 @@ impl PkgType {
|
||||
Rustfmt => HOSTS,
|
||||
RustAnalysis => TARGETS,
|
||||
LlvmTools => TARGETS,
|
||||
LlvmBitcodeLinker => HOSTS,
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user