diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2020-09-25 19:42:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-25 19:42:46 +0200 |
| commit | ba3e25f992eb17644cd09b71598668edc420aba9 (patch) | |
| tree | e0bf33b2ffed43a962acee2874cf1505c79064e2 /src/bootstrap | |
| parent | 61dc57c85a64bbc96226902136b8374df2c30ab6 (diff) | |
| parent | 4de836e2141c418d37e556bc80c4ad0127d74b71 (diff) | |
| download | rust-ba3e25f992eb17644cd09b71598668edc420aba9.tar.gz rust-ba3e25f992eb17644cd09b71598668edc420aba9.zip | |
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
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/install.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/install.rs b/src/bootstrap/install.rs index d9ee3bc90fb..074f5cd73f3 100644 --- a/src/bootstrap/install.rs +++ b/src/bootstrap/install.rs @@ -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, |
