Rename `-Z verbose` to `-Z verbose-internals`
The `-Z verbose` option has been renamed to `-Z verbose-internals` in
commit b5d83619 [1] (PR #119129 [2]). This commit updates the remaining
`-Z verbose` to `-Z verbose-internals`.
[1]: b5d8361909
[2]: https://github.com/rust-lang/rust/pull/119129
This commit is contained in:
parent
e5c5fc3a13
commit
4c97ad5479
|
|
@ -52,8 +52,8 @@ The compiler has a bunch of `-Z` flags. These are unstable flags that are only
|
||||||
enabled on nightly. Many of them are useful for debugging. To get a full listing
|
enabled on nightly. Many of them are useful for debugging. To get a full listing
|
||||||
of `-Z` flags, use `-Z help`.
|
of `-Z` flags, use `-Z help`.
|
||||||
|
|
||||||
One useful flag is `-Z verbose`, which generally enables printing more info that
|
One useful flag is `-Z verbose-internals`, which generally enables printing more
|
||||||
could be useful for debugging.
|
info that could be useful for debugging.
|
||||||
|
|
||||||
## Getting a backtrace
|
## Getting a backtrace
|
||||||
[getting-a-backtrace]: #getting-a-backtrace
|
[getting-a-backtrace]: #getting-a-backtrace
|
||||||
|
|
|
||||||
|
|
@ -597,7 +597,7 @@ revision. To do this, add `[revision-name]` after the `//` comment, like so:
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
// A flag to pass in only for cfg `foo`:
|
// A flag to pass in only for cfg `foo`:
|
||||||
//@[foo]compile-flags: -Z verbose
|
//@[foo]compile-flags: -Z verbose-internals
|
||||||
|
|
||||||
#[cfg(foo)]
|
#[cfg(foo)]
|
||||||
fn test_foo() {
|
fn test_foo() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue