Skip to content

Commit 500647f

Browse files
committed
Auto merge of rust-lang#114144 - workingjubilee:rollup-jkmtgdo, r=workingjubilee
Rollup of 4 pull requests Successful merges: - rust-lang#97571 (Add documentation on v0 symbol mangling.) - rust-lang#114122 (tests/ui/hello_world/main.rs: Remove FIXME (rust-lang#62277)) - rust-lang#114133 (Revert "add tidy check that forbids issue ui test filenames") - rust-lang#114139 (Make `--print` with path unstable) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 0be1152 + b457992 commit 500647f

File tree

11 files changed

+41
-4338
lines changed

11 files changed

+41
-4338
lines changed

compiler/rustc_session/src/config.rs

+6
Original file line numberDiff line numberDiff line change
@@ -2152,6 +2152,12 @@ fn collect_print_requests(
21522152
prints.extend(matches.opt_strs("print").into_iter().map(|req| {
21532153
let (req, out) = split_out_file_name(&req);
21542154

2155+
if out.is_some() && !unstable_opts.unstable_options {
2156+
handler.early_error(
2157+
"the `-Z unstable-options` flag must also be passed to \
2158+
enable the path print option",
2159+
);
2160+
}
21552161
let kind = match PRINT_KINDS.iter().find(|&&(name, _)| name == req) {
21562162
Some((_, PrintKind::TargetSpec)) => {
21572163
if unstable_opts.unstable_options {

src/doc/rustc/src/command-line-arguments.md

-4
Original file line numberDiff line numberDiff line change
@@ -260,10 +260,6 @@ The valid types of print values are:
260260
This returns rustc's minimum supported deployment target if no `*_DEPLOYMENT_TARGET` variable
261261
is present in the environment, or otherwise returns the variable's parsed value.
262262

263-
A filepath may optionally be specified for each requested information kind, in
264-
the format `--print KIND=PATH`, just like for `--emit`. When a path is
265-
specified, information will be written there instead of to stdout.
266-
267263
[conditional compilation]: ../reference/conditional-compilation.html
268264
[deployment target]: https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/cross_development/Configuring/configuring.html
269265

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# `--print` Options
2+
3+
The behavior of the `--print` flag can be modified by optionally be specifiying a filepath
4+
for each requested information kind, in the format `--print KIND=PATH`, just like for
5+
`--emit`. When a path is specified, information will be written there instead of to stdout.
6+
7+
This is unstable feature, so you have to provide `-Zunstable-options` to enable it.
8+
9+
## Examples
10+
11+
`rustc main.rs -Z unstable-options --print cfg=cfgs.txt`

0 commit comments

Comments
 (0)