diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2020-12-21 18:04:58 +0100 |
|---|---|---|
| committer | Pietro Albini <pietro@pietroalbini.org> | 2020-12-23 19:35:22 +0100 |
| commit | 2c081769b09a876ecd3e9854f8cffc022ddc6b13 (patch) | |
| tree | a63b3e1c9de1c70ded11ab971ceac5925c5505e6 | |
| parent | ae12a0c200da9a97d80d074e20bf4180fe4671b5 (diff) | |
| download | rust-2c081769b09a876ecd3e9854f8cffc022ddc6b13.tar.gz rust-2c081769b09a876ecd3e9854f8cffc022ddc6b13.zip | |
bootstrap: use the normal compiler to build std
| -rw-r--r-- | src/bootstrap/dist.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index dddb9527ea1..6d9ee60f952 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -1283,8 +1283,7 @@ impl Step for Extended { let analysis_installer = builder.ensure(Analysis { compiler, target }); let docs_installer = builder.ensure(Docs { host: target }); - let std_installer = - builder.ensure(Std { compiler: builder.compiler(stage, target), target }); + let std_installer = builder.ensure(Std { compiler, target }); let etc = builder.src.join("src/etc/installer"); |
