Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign uprustc: Change target_env for ARM targets to `gnu` #33403
Conversation
rust-highfive
assigned
arielb1
May 4, 2016
This comment has been minimized.
This comment has been minimized.
|
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
|
r? @brson |
rust-highfive
assigned
brson
and unassigned
arielb1
May 4, 2016
This comment has been minimized.
This comment has been minimized.
|
Is there anywhere our |
brson
added
relnotes
regression-from-stable-to-nightly
labels
May 4, 2016
This comment has been minimized.
This comment has been minimized.
|
Unfortunately not that I know of, no |
This comment has been minimized.
This comment has been minimized.
|
@bors r+ |
This comment has been minimized.
This comment has been minimized.
|
|
This comment has been minimized.
This comment has been minimized.
|
I think theres some documentation in the reference? |
This comment has been minimized.
This comment has been minimized.
|
@TimNN Thanks for the pointer. I'll send a followup patch. |
brson
added a commit
to brson/rust
that referenced
this pull request
May 5, 2016
brson
referenced this pull request
May 5, 2016
Merged
doc: Update reference with better description of target_env #33437
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this pull request
May 5, 2016
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this pull request
May 5, 2016
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this pull request
May 5, 2016
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this pull request
May 5, 2016
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this pull request
May 6, 2016
GuillaumeGomez
added a commit
to GuillaumeGomez/rust
that referenced
this pull request
May 7, 2016
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this pull request
May 7, 2016
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this pull request
May 7, 2016
This comment has been minimized.
This comment has been minimized.
|
|
bors
added a commit
that referenced
this pull request
May 8, 2016
This comment has been minimized.
This comment has been minimized.
bors
merged commit 29875c2
into
rust-lang:master
May 8, 2016
alexcrichton
deleted the
alexcrichton:consistent-env
branch
May 12, 2016
dlrobertson
pushed a commit
to dlrobertson/rust
that referenced
this pull request
Nov 29, 2018
Sign up for free
to 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.
alexcrichton commentedMay 4, 2016
Right now they're
gnueabihfandgnueabi, but when adding new platforms likemusl on ARM it's unfortunate to have to test for all three (
musl,musleabi,and
musleabihf). This PR switches everything currently tognu, and the newmusl targets can also use
muslwhen they land.Closes #33244