Skip to content

Commit 2f79f15

Browse files
committed
Update Cargo reference for new -Zcheck-cfg behavior and syntax
1 parent 4b93690 commit 2f79f15

File tree

1 file changed

+18
-27
lines changed

1 file changed

+18
-27
lines changed

src/doc/src/reference/unstable.md

+18-27
Original file line numberDiff line numberDiff line change
@@ -1080,34 +1080,14 @@ you are ok with dev-deps being build for `cargo doc`.
10801080
* RFC: [#3013](https://github.com/rust-lang/rfcs/pull/3013)
10811081
* Tracking Issue: [#10554](https://github.com/rust-lang/cargo/issues/10554)
10821082

1083-
`-Z check-cfg` command line enables compile time checking of name and values in `#[cfg]`, `cfg!`,
1084-
`#[link]` and `#[cfg_attr]` with the `rustc` and `rustdoc` unstable `--check-cfg` command line.
1083+
`-Z check-cfg` command line enables compile time checking of Cargo features as well as `rustc`
1084+
well known names and values in `#[cfg]`, `cfg!`, `#[link]` and `#[cfg_attr]` with the `rustc`
1085+
and `rustdoc` unstable `--check-cfg` command line.
10851086

1086-
It's values are:
1087-
- `features`: enables features checking via `--check-cfg=values(feature, ...)`.
1088-
Note than this command line options will probably become the default when stabilizing.
1089-
- `names`: enables well known names checking via `--check-cfg=names()`.
1090-
- `values`: enables well known values checking via `--check-cfg=values()`.
1091-
- `output`: enable the use of `rustc-check-cfg` in build script.
1092-
1093-
For instance:
1094-
1095-
```
1096-
cargo check -Z unstable-options -Z check-cfg=features
1097-
cargo check -Z unstable-options -Z check-cfg=names
1098-
cargo check -Z unstable-options -Z check-cfg=values
1099-
cargo check -Z unstable-options -Z check-cfg=features,names,values
1100-
```
1101-
1102-
Or for `output`:
1103-
1104-
```rust,no_run
1105-
// build.rs
1106-
println!("cargo:rustc-check-cfg=names(foo, bar)");
1107-
```
1087+
You can use the flag like this:
11081088

11091089
```
1110-
cargo check -Z unstable-options -Z check-cfg=output
1090+
cargo check -Z unstable-options -Z check-cfg
11111091
```
11121092

11131093
### `cargo:rustc-check-cfg=CHECK_CFG`
@@ -1116,12 +1096,23 @@ The `rustc-check-cfg` instruction tells Cargo to pass the given value to the
11161096
`--check-cfg` flag to the compiler. This may be used for compile-time
11171097
detection of unexpected conditional compilation name and/or values.
11181098

1119-
This can only be used in combination with `-Zcheck-cfg=output` otherwise it is ignored
1099+
This can only be used in combination with `-Zcheck-cfg` otherwise it is ignored
11201100
with a warning.
11211101

1122-
If you want to integrate with Cargo features, use `-Zcheck-cfg=features` instead of
1102+
If you want to integrate with Cargo features, only use `-Zcheck-cfg` instead of
11231103
trying to do it manually with this option.
11241104

1105+
You can use the instruction like this:
1106+
1107+
```rust,no_run
1108+
// build.rs
1109+
println!("cargo:rustc-check-cfg=cfg(foo, bar)");
1110+
```
1111+
1112+
```
1113+
cargo check -Z unstable-options -Z check-cfg
1114+
```
1115+
11251116
## codegen-backend
11261117

11271118
The `codegen-backend` feature makes it possible to select the codegen backend used by rustc using a profile.

0 commit comments

Comments
 (0)