You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #10539 - Urgau:check-cfg-build-script, r=ehuss
Add unstable `rustc-check-cfg` build script output
This PR adds a new build script output as unstable behind `-Zcheck-cfg=output`: `rustc-check-cfg`.
### What does this PR try to resolve?
This PR add a way to add to use the unstable `--check-cfg` command line option of `rustc` and `rustdoc`.
It was discover in [Bump bootstrap compiler to 1.61.0 beta](rust-lang/rust#95678 (comment)) that `rustc_llvm` sets some custom `cfg` from a build script and because `--check-cfg=values()` is globally enable in the Rust codebase that cause the compilation to fail. For now no values are checked in stage 0 for the entire codebase which is a shame and should be fixed with the addition of this feature.
### How should we test and review this PR?
Commits are separated in: implementation, tests and doc.
Testing should simply be done by adding a valid `cargo:rustc-check-cfg` in a build script.
Watch the added tests or doc to have an example.
### Additional information
This PR is also the logical next step after `-Zcheck-cfg-features`.
Copy file name to clipboardexpand all lines: src/cargo/core/features.rs
+11-4
Original file line number
Diff line number
Diff line change
@@ -641,7 +641,7 @@ unstable_cli_options!(
641
641
build_std_features:Option<Vec<String>> = ("Configure features enabled for the standard library itself when building the standard library"),
642
642
config_include:bool = ("Enable the `include` key in config files"),
643
643
credential_process:bool = ("Add a config setting to fetch registry authentication tokens by calling an external process"),
644
-
check_cfg:Option<(/*features:*/bool,/*well_known_names:*/bool,/*well_known_values:*/bool)> = ("Specify scope of compile-time checking of `cfg` names/values"),
644
+
check_cfg:Option<(/*features:*/bool,/*well_known_names:*/bool,/*well_known_values:*/bool,/*output:*/bool)> = ("Specify scope of compile-time checking of `cfg` names/values"),
645
645
doctest_in_workspace:bool = ("Compile doctests with paths relative to the workspace root"),
646
646
doctest_xcompile:bool = ("Compile and run doctests for non-host target using runner config"),
647
647
dual_proc_macros:bool = ("Build proc-macros for both the host and the target"),
0 commit comments