Uh oh!
There was an error while loading. Please reload this page.
Update beta bootstrap compiler - #38438
Merged
Merged
Conversation
The current beta that rustc is bootstrapping from contains a bug in Cargo that erroneously links to OpenSSL in /usr/local, but this is fixed in the most recent 1.14 beta, so let's use that.
rust-highfive
commented
Dec 17, 2016
Contributor
(rust_highfive has picked a reviewer for you, use r? to override) |
alexcrichton
commented
Dec 17, 2016
MemberAuthor
r? @brson This is what's causing failures on Travis on the auto branch. |
est31
commented
Dec 17, 2016
Member
I'm wondering, does the new beta incorporate #38393? If not, will the stage0 be updated before the 1.15 will be released? |
brson
commented
Dec 18, 2016
Contributor
brson
commented
Dec 18, 2016
Contributor
@bors r+ |
bors
commented
Dec 18, 2016
Collaborator
📌 Commit c3423a6 has been approved by |
sanxiyn added a commit
to sanxiyn/rust
that referenced
this pull request
Dec 19, 2016
Update beta bootstrap compiler The current beta that rustc is bootstrapping from contains a bug in Cargo that erroneously links to OpenSSL in /usr/local, but this is fixed in the most recent 1.14 beta, so let's use that.
bors added a commit
that referenced
this pull request
Dec 19, 2016
alexcrichton added a commit
to alexcrichton/rust
that referenced
this pull request
Dec 20, 2016
I updated the beta compiler used to bootstrap the master branch in rust-lang#38438 with the intention of fixing Travis OSX linkage issues but I mistakenly forgot that the PR only updated rustc, not Cargo itself. Cargo has a new release process with downloads in a different location, so this commit updates rustbuild to download from this new location by tracking revisions instead of Cargo nightly dates.
alexcrichton added a commit
to alexcrichton/rust
that referenced
this pull request
Dec 20, 2016
rustbuild: Update Cargo download location I updated the beta compiler used to bootstrap the master branch in rust-lang#38438 with the intention of fixing Travis OSX linkage issues but I mistakenly forgot that the PR only updated rustc, not Cargo itself. Cargo has a new release process with downloads in a different location, so this commit updates rustbuild to download from this new location by tracking revisions instead of Cargo nightly dates.
alexcrichton added a commit
to alexcrichton/rust
that referenced
this pull request
Dec 30, 2016
I updated the beta compiler used to bootstrap the master branch in rust-lang#38438 with the intention of fixing Travis OSX linkage issues but I mistakenly forgot that the PR only updated rustc, not Cargo itself. Cargo has a new release process with downloads in a different location, so this commit updates rustbuild to download from this new location by tracking revisions instead of Cargo nightly dates.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The current beta that rustc is bootstrapping from contains a bug in Cargo that
erroneously links to OpenSSL in /usr/local, but this is fixed in the most recent
1.14 beta, so let's use that.