@@ -1080,34 +1080,14 @@ you are ok with dev-deps being build for `cargo doc`.
1080
1080
* RFC: [ #3013 ] ( https://github.com/rust-lang/rfcs/pull/3013 )
1081
1081
* Tracking Issue: [ #10554 ] ( https://github.com/rust-lang/cargo/issues/10554 )
1082
1082
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.
1085
1086
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:
1108
1088
1109
1089
```
1110
- cargo check -Z unstable-options -Z check-cfg=output
1090
+ cargo check -Z unstable-options -Z check-cfg
1111
1091
```
1112
1092
1113
1093
### ` cargo:rustc-check-cfg=CHECK_CFG `
@@ -1116,12 +1096,23 @@ The `rustc-check-cfg` instruction tells Cargo to pass the given value to the
1116
1096
` --check-cfg ` flag to the compiler. This may be used for compile-time
1117
1097
detection of unexpected conditional compilation name and/or values.
1118
1098
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
1120
1100
with a warning.
1121
1101
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
1123
1103
trying to do it manually with this option.
1124
1104
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
+
1125
1116
## codegen-backend
1126
1117
1127
1118
The ` codegen-backend ` feature makes it possible to select the codegen backend used by rustc using a profile.
0 commit comments