fix(build-manifest)!: limit rustc-docs to current host target in the manifest
This commit is contained in:
parent
9b81629631
commit
cf3738a49e
1 changed files with 2 additions and 1 deletions
|
|
@ -301,11 +301,12 @@ impl Builder {
|
|||
| PkgType::LlvmTools
|
||||
| PkgType::RustAnalysis
|
||||
| PkgType::JsonDocs
|
||||
| PkgType::RustcDocs
|
||||
| PkgType::RustcCodegenCranelift
|
||||
| PkgType::LlvmBitcodeLinker => {
|
||||
extensions.push(host_component(pkg));
|
||||
}
|
||||
PkgType::RustcDev | PkgType::RustcDocs => {
|
||||
PkgType::RustcDev => {
|
||||
extensions.extend(HOSTS.iter().map(|target| Component::from_pkg(pkg, target)));
|
||||
}
|
||||
PkgType::RustSrc => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue