@@ -1401,8 +1401,8 @@ impl<'a> Builder<'a> {
1401
1401
rustflags. arg ( "-Zunstable-options" ) ;
1402
1402
}
1403
1403
1404
- // #[cfg(bootstrap)] should remove every code path where it's false
1405
- const USE_NEW_CHECK_CFG_SYNTAX : bool = false ;
1404
+ // #[cfg(bootstrap)]
1405
+ let use_new_check_cfg_syntax = self . local_rebuild ;
1406
1406
1407
1407
// Enable compile-time checking of `cfg` names, values and Cargo `features`.
1408
1408
//
@@ -1411,7 +1411,7 @@ impl<'a> Builder<'a> {
1411
1411
// features but cargo isn't involved in the #[path] process and so cannot pass the
1412
1412
// complete list of features, so for that reason we don't enable checking of
1413
1413
// features for std crates.
1414
- if USE_NEW_CHECK_CFG_SYNTAX {
1414
+ if use_new_check_cfg_syntax {
1415
1415
cargo. arg ( "-Zcheck-cfg" ) ;
1416
1416
if mode == Mode :: Std {
1417
1417
rustflags. arg ( "--check-cfg=cfg(feature,values(any()))" ) ;
@@ -1442,7 +1442,7 @@ impl<'a> Builder<'a> {
1442
1442
. collect :: < String > ( ) ,
1443
1443
None => String :: new ( ) ,
1444
1444
} ;
1445
- if USE_NEW_CHECK_CFG_SYNTAX {
1445
+ if use_new_check_cfg_syntax {
1446
1446
let values = values. strip_prefix ( "," ) . unwrap_or ( & values) ; // remove the first `,`
1447
1447
rustflags. arg ( & format ! ( "--check-cfg=cfg({name},values({values}))" ) ) ;
1448
1448
} else {
@@ -1463,7 +1463,7 @@ impl<'a> Builder<'a> {
1463
1463
// We also declare that the flag is expected, which we need to do to not
1464
1464
// get warnings about it being unexpected.
1465
1465
hostflags. arg ( "-Zunstable-options" ) ;
1466
- if USE_NEW_CHECK_CFG_SYNTAX {
1466
+ if use_new_check_cfg_syntax {
1467
1467
hostflags. arg ( "--check-cfg=cfg(bootstrap)" ) ;
1468
1468
} else {
1469
1469
hostflags. arg ( "--check-cfg=values(bootstrap)" ) ;
0 commit comments