-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
rustc: Implement a new --print cfg
flag
#31278
Merged
Merged
Conversation
This file contains 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
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
alexcrichton
force-pushed
the
print-cfg
branch
from
January 29, 2016 07:34
44a828f
to
2330495
Compare
brson
added
the
relnotes
Marks issues that should be documented in the release notes of the next release.
label
Feb 2, 2016
That's super surprising. |
Please add an |
alexcrichton
force-pushed
the
print-cfg
branch
from
February 8, 2016 19:06
2330495
to
e50eac5
Compare
bors
added a commit
that referenced
this pull request
Feb 8, 2016
This commit is an implementation of the new compiler flags required by [RFC 1361][rfc]. This specifically adds a new `cfg` option to the `--print` flag to the compiler. This new directive will print the defined `#[cfg]` directives by the compiler for the target in question. [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1361-cargo-cfg-dependencies
💔 Test failed - auto-win-gnu-64-opt |
This commit is an implementation of the new compiler flags required by [RFC 1361][rfc]. This specifically adds a new `cfg` option to the `--print` flag to the compiler. This new directive will print the defined `#[cfg]` directives by the compiler for the target in question. [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1361-cargo-cfg-dependencies.md
alexcrichton
force-pushed
the
print-cfg
branch
from
February 8, 2016 22:28
e50eac5
to
a1ffe6b
Compare
⌛ Testing commit a1ffe6b with merge 75271d8... |
bors
added a commit
that referenced
this pull request
Feb 9, 2016
This commit is an implementation of the new compiler flags required by [RFC 1361][rfc]. This specifically adds a new `cfg` option to the `--print` flag to the compiler. This new directive will print the defined `#[cfg]` directives by the compiler for the target in question. [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1361-cargo-cfg-dependencies
ranma42
added a commit
to ranma42/rust
that referenced
this pull request
Mar 2, 2016
The `--print` flag was extended in rust-lang#31278 to accept `cfg`, but the usage message was not updated.
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.
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.
This commit is an implementation of the new compiler flags required by RFC
1361. This specifically adds a new
cfg
option to the--print
flag tothe compiler. This new directive will print the defined
#[cfg]
directives bythe compiler for the target in question.