@@ -645,10 +645,7 @@ fn rustdoc(cx: &mut Context<'_, '_>, unit: &Unit) -> CargoResult<Work> {
645
645
paths:: create_dir_all ( & doc_dir) ?;
646
646
647
647
rustdoc. arg ( "-o" ) . arg ( & doc_dir) ;
648
-
649
- for feat in & unit. features {
650
- rustdoc. arg ( "--cfg" ) . arg ( & format ! ( "feature=\" {}\" " , feat) ) ;
651
- }
648
+ rustdoc. args ( & features_args ( cx, unit) ) ;
652
649
653
650
add_error_format_and_color ( cx, & mut rustdoc) ;
654
651
add_allow_features ( cx, & mut rustdoc) ;
@@ -791,28 +788,6 @@ fn add_allow_features(cx: &Context<'_, '_>, cmd: &mut ProcessBuilder) {
791
788
}
792
789
}
793
790
794
- /// Add all features as cfg
795
- fn add_features ( cx : & Context < ' _ , ' _ > , cmd : & mut ProcessBuilder , unit : & Unit ) {
796
- for feat in & unit. features {
797
- cmd. arg ( "--cfg" ) . arg ( & format ! ( "feature=\" {}\" " , feat) ) ;
798
- }
799
-
800
- if cx. bcx . config . cli_unstable ( ) . check_cfg_features {
801
- // This generate something like this:
802
- // - values(feature)
803
- // - values(feature, "foo", "bar")
804
- let mut arg = String :: from ( "values(feature" ) ;
805
- for ( & feat, _) in unit. pkg . summary ( ) . features ( ) {
806
- arg. push_str ( ", \" " ) ;
807
- arg. push_str ( & feat) ;
808
- arg. push_str ( "\" " ) ;
809
- }
810
- arg. push ( ')' ) ;
811
-
812
- cmd. arg ( "-Zunstable-options" ) . arg ( "--check-cfg" ) . arg ( & arg) ;
813
- }
814
- }
815
-
816
791
/// Add error-format flags to the command.
817
792
///
818
793
/// Cargo always uses JSON output. This has several benefits, such as being
@@ -990,7 +965,7 @@ fn build_base_args(
990
965
cmd. arg ( "--cfg" ) . arg ( "test" ) ;
991
966
}
992
967
993
- add_features ( cx, cmd , unit) ;
968
+ cmd . args ( & features_args ( cx, unit) ) ;
994
969
995
970
let meta = cx. files ( ) . metadata ( unit) ;
996
971
cmd. arg ( "-C" ) . arg ( & format ! ( "metadata={}" , meta) ) ;
@@ -1064,6 +1039,35 @@ fn build_base_args(
1064
1039
Ok ( ( ) )
1065
1040
}
1066
1041
1042
+ /// Features with --cfg and all features with --check-cfg
1043
+ fn features_args ( cx : & Context < ' _ , ' _ > , unit : & Unit ) -> Vec < OsString > {
1044
+ let mut args = Vec :: with_capacity ( unit. features . len ( ) + 2 ) ;
1045
+
1046
+ for feat in & unit. features {
1047
+ args. push ( OsString :: from ( "--cfg" ) ) ;
1048
+ args. push ( OsString :: from ( format ! ( "feature=\" {}\" " , feat) ) ) ;
1049
+ }
1050
+
1051
+ if cx. bcx . config . cli_unstable ( ) . check_cfg_features {
1052
+ // This generate something like this:
1053
+ // - values(feature)
1054
+ // - values(feature, "foo", "bar")
1055
+ let mut arg = OsString :: from ( "values(feature" ) ;
1056
+ for ( & feat, _) in unit. pkg . summary ( ) . features ( ) {
1057
+ arg. push ( ", \" " ) ;
1058
+ arg. push ( & feat) ;
1059
+ arg. push ( "\" " ) ;
1060
+ }
1061
+ arg. push ( ")" ) ;
1062
+
1063
+ args. push ( OsString :: from ( "-Zunstable-options" ) ) ;
1064
+ args. push ( OsString :: from ( "--check-cfg" ) ) ;
1065
+ args. push ( arg) ;
1066
+ }
1067
+
1068
+ args
1069
+ }
1070
+
1067
1071
fn lto_args ( cx : & Context < ' _ , ' _ > , unit : & Unit ) -> Vec < OsString > {
1068
1072
let mut result = Vec :: new ( ) ;
1069
1073
let mut push = |arg : & str | {
0 commit comments