Rollup merge of #77146 - Mark-Simulacrum:xpyinstall, r=alexcrichton

Install std for non-host targets

It seems reasonable that when configuring various targets you'd expect all of them to get std installed, even if you're not building compiler toolchains for each of those.

cc #76990

r? @alexcrichton
This commit is contained in:
Jonas Schievink
2020-09-25 19:42:46 +02:00
committed by GitHub
+1 -1
View File
@@ -192,7 +192,7 @@ fn run($sel, $builder: &Builder<'_>) {
builder.ensure(dist::Docs { host: self.target });
install_docs(builder, self.compiler.stage, self.target);
};
Std, "library/std", true, only_hosts: true, {
Std, "library/std", true, only_hosts: false, {
for target in &builder.targets {
builder.ensure(dist::Std {
compiler: self.compiler,