about summary refs log tree commit diff
path: root/src/bootstrap/bootstrap.py
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-09-05 20:37:26 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-09-05 20:49:59 +0300
commit8754884b78ee6cff99bd72ebdab39629f6ff88c3 (patch)
tree7fcdf547cb469f1c2a18822979b22ce11ea11046 /src/bootstrap/bootstrap.py
parent7d289aeade481c03d42e7f6d31bc6b64a73cfa45 (diff)
downloadrust-8754884b78ee6cff99bd72ebdab39629f6ff88c3.tar.gz
rust-8754884b78ee6cff99bd72ebdab39629f6ff88c3.zip
rustbuild: Do not use `rust-mingw` component when bootstrapping windows-gnu targets
Diffstat (limited to 'src/bootstrap/bootstrap.py')
-rw-r--r--src/bootstrap/bootstrap.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py
index c3f1bac177d..dd9fca4eb62 100644
--- a/src/bootstrap/bootstrap.py
+++ b/src/bootstrap/bootstrap.py
@@ -398,14 +398,6 @@ class RustBuild(object):
             with output(self.rustc_stamp()) as rust_stamp:
                 rust_stamp.write(self.date)
 
-            # This is required so that we don't mix incompatible MinGW
-            # libraries/binaries that are included in rust-std with
-            # the system MinGW ones.
-            if "pc-windows-gnu" in self.build:
-                filename = "rust-mingw-{}-{}{}".format(
-                    rustc_channel, self.build, tarball_suffix)
-                self._download_stage0_helper(filename, "rust-mingw", tarball_suffix)
-
         if self.cargo().startswith(self.bin_root()) and \
                 (not os.path.exists(self.cargo()) or
                  self.program_out_of_date(self.cargo_stamp())):