Skip to content

Commit

Permalink
Rollup merge of #77146 - Mark-Simulacrum:xpyinstall, r=alexcrichton
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jonas-schievink authored Sep 25, 2020
2 parents 61dc57c + 4de836e commit ba3e25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ install!((self, builder, _config),
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,
Expand Down

0 comments on commit ba3e25f

Please sign in to comment.