-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restore the download of rust-mingw #48637
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
src/bootstrap/bootstrap.py
Outdated
@@ -350,6 +350,11 @@ def download_stage0(self): | |||
self.fix_executable("{}/bin/rustdoc".format(self.bin_root())) | |||
with open(self.rustc_stamp(), 'w') as rust_stamp: | |||
rust_stamp.write(self.date) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[00:05:29] tidy error: /checkout/src/bootstrap/bootstrap.py:353: trailing whitespace
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops...
The build might otherwise break due to mixing MinGW object files from rust-std and the local MinGW which might be newer/older than the version used to build rust-std. Fixes rust-lang#48272
f6c9c9b
to
39d0b05
Compare
Thanks! Could you leave a comment as to why this is happening as well? |
@bors: r+ |
📌 Commit 5332d9a has been approved by |
…oad, r=alexcrichton Fixes rust-lang#47311. r? @nrc
…oad, r=alexcrichton Restore the download of rust-mingw The build might otherwise break due to mixing MinGW object files from rust-std and the local MinGW which might be newer/older than the version used to build rust-std. Fixes rust-lang#48272 r? @alexcrichton
The build might otherwise break due to mixing MinGW object files from rust-std and the local MinGW which might be newer/older than the version used to build rust-std.
Fixes #48272
r? @alexcrichton