Skip to content

Commit 14e3dde

Browse files
committed
Add Builder::std method for building a standard library
1 parent 6feb9b7 commit 14e3dde

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/tool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ impl Step for ToolBuild {
122122
Mode::ToolRustc => {
123123
// If compiler was forced, its artifacts should be prepared earlier.
124124
if !self.compiler.is_forced_compiler() {
125-
builder.ensure(compile::Std::new(self.compiler, self.compiler.host));
125+
builder.std(self.compiler, self.compiler.host);
126126
builder.ensure(compile::Rustc::new(self.compiler, target));
127127
}
128128
}

0 commit comments

Comments
 (0)