File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -55,8 +55,10 @@ impl Target {
55
55
. collect ( ) ,
56
56
// Note that these are unstable options, so only show up with the nightly compiler or
57
57
// with `RUSTC_BOOTSTRAP=1` (which is required to use the types anyway).
58
- reliable_f128 : env:: var_os ( "CARGO_CFG_TARGET_HAS_RELIABLE_F128" ) . is_some ( ) ,
59
- reliable_f16 : env:: var_os ( "CARGO_CFG_TARGET_HAS_RELIABLE_F16" ) . is_some ( ) ,
58
+ // reliable_f128: env::var_os("CARGO_CFG_TARGET_HAS_RELIABLE_F128").is_some(),
59
+ // reliable_f16: env::var_os("CARGO_CFG_TARGET_HAS_RELIABLE_F16").is_some(),
60
+ reliable_f16 : true ,
61
+ reliable_f128 : true ,
60
62
}
61
63
}
62
64
Original file line number Diff line number Diff line change @@ -48,8 +48,10 @@ impl Config {
48
48
target_features,
49
49
// Note that these are unstable options, so only show up with the nightly compiler or
50
50
// with `RUSTC_BOOTSTRAP=1` (which is required to use the types anyway).
51
- reliable_f128 : env:: var_os ( "CARGO_CFG_TARGET_HAS_RELIABLE_F128" ) . is_some ( ) ,
52
- reliable_f16 : env:: var_os ( "CARGO_CFG_TARGET_HAS_RELIABLE_F16" ) . is_some ( ) ,
51
+ // reliable_f128: env::var_os("CARGO_CFG_TARGET_HAS_RELIABLE_F128").is_some(),
52
+ // reliable_f16: env::var_os("CARGO_CFG_TARGET_HAS_RELIABLE_F16").is_some(),
53
+ reliable_f16 : true ,
54
+ reliable_f128 : true ,
53
55
}
54
56
}
55
57
}
You can’t perform that action at this time.
0 commit comments