Skip to content

Commit ba3e25f

Browse files
Rollup merge of rust-lang#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 rust-lang#76990 r? @alexcrichton
2 parents 61dc57c + 4de836e commit ba3e25f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/install.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ install!((self, builder, _config),
192192
builder.ensure(dist::Docs { host: self.target });
193193
install_docs(builder, self.compiler.stage, self.target);
194194
};
195-
Std, "library/std", true, only_hosts: true, {
195+
Std, "library/std", true, only_hosts: false, {
196196
for target in &builder.targets {
197197
builder.ensure(dist::Std {
198198
compiler: self.compiler,

0 commit comments

Comments
 (0)