Skip to content

Commit 3fe68ea

Browse files
committed
Auto merge of #13500 - ehuss:beta-check-cfg, r=weihanglo
[beta-1.77] Backport ignore `cargo::rustc-check-cfg` This is a beta backport of #13438 (comment) to disable the warning when `cargo::rustc-check-cfg` is used in a build script on stable in order to provide a broader window where we can stabilize check-cfg, and allow developers to avoid the warning when they use a range of different Rust versions (such as stable and nightly). Also backports to fix CI: * #13455 — Remove unnecessary use statement in metabuild
2 parents 837c09f + 6014cef commit 3fe68ea

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

src/cargo/core/compiler/custom_build.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -915,10 +915,8 @@ impl BuildOutput {
915915
if extra_check_cfg {
916916
check_cfgs.push(value.to_string());
917917
} else {
918-
warnings.push(format!(
919-
"{}{} requires -Zcheck-cfg flag",
920-
syntax_prefix, key
921-
));
918+
// silently ignoring the instruction to try to
919+
// minimise MSRV annoyance when stabilizing -Zcheck-cfg
922920
}
923921
}
924922
"rustc-env" => {
@@ -1076,9 +1074,6 @@ fn prepare_metabuild(cx: &Context<'_, '_>, unit: &Unit, deps: &[String]) -> Carg
10761074
.map(|d| d.unit.target.crate_name())
10771075
})
10781076
.collect();
1079-
for dep in &meta_deps {
1080-
output.push(format!("use {};\n", dep));
1081-
}
10821077
output.push("fn main() {\n".to_string());
10831078
for dep in &meta_deps {
10841079
output.push(format!(" {}::metabuild();\n", dep));

src/cargo/util/config/target.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,8 @@ fn parse_links_overrides(
207207
let list = value.list(key)?;
208208
output.check_cfgs.extend(list.iter().map(|v| v.0.clone()));
209209
} else {
210-
config.shell().warn(format!(
211-
"target config `{}.{}` requires -Zcheck-cfg flag",
212-
target_key, key
213-
))?;
210+
// silently ignoring the instruction to try to
211+
// minimise MSRV annoyance when stabilizing -Zcheck-cfg
214212
}
215213
}
216214
"rustc-env" => {

tests/testsuite/check_cfg.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -456,9 +456,7 @@ fn build_script_override_feature_gate() {
456456
.build();
457457

458458
p.cargo("check")
459-
.with_stderr_contains(
460-
"warning: target config[..]rustc-check-cfg[..] requires -Zcheck-cfg flag",
461-
)
459+
.with_stderr_does_not_contain("warning: [..]rustc-check-cfg[..]")
462460
.run();
463461
}
464462

@@ -540,7 +538,7 @@ fn build_script_feature_gate() {
540538
.build();
541539

542540
p.cargo("check")
543-
.with_stderr_contains("warning[..]cargo::rustc-check-cfg requires -Zcheck-cfg flag")
541+
.with_stderr_does_not_contain("warning: [..]rustc-check-cfg[..]")
544542
.with_status(0)
545543
.run();
546544
}

0 commit comments

Comments
 (0)