File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ use std::string::String;
8
8
// make sure to add it to this list as well.
9
9
const ALLOWED_CFGS : & ' static [ & ' static str ] = & [
10
10
"emscripten_new_stat_abi" ,
11
+ "espidf_time64" ,
11
12
"freebsd10" ,
12
13
"freebsd11" ,
13
14
"freebsd12" ,
@@ -51,7 +52,7 @@ fn main() {
51
52
let align_cargo_feature = env:: var ( "CARGO_FEATURE_ALIGN" ) . is_ok ( ) ;
52
53
let const_extern_fn_cargo_feature = env:: var ( "CARGO_FEATURE_CONST_EXTERN_FN" ) . is_ok ( ) ;
53
54
let libc_ci = env:: var ( "LIBC_CI" ) . is_ok ( ) ;
54
- let libc_check_cfg = env:: var ( "LIBC_CHECK_CFG" ) . is_ok ( ) ;
55
+ let libc_check_cfg = env:: var ( "LIBC_CHECK_CFG" ) . is_ok ( ) || rustc_minor_ver >= 80 ;
55
56
56
57
if env:: var ( "CARGO_FEATURE_USE_STD" ) . is_ok ( ) {
57
58
println ! (
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ mod t {
79
79
80
80
// These OSes allow 32 bits for both minor and major
81
81
#[ cfg( any(
82
- target_os = "empscripten " ,
82
+ target_os = "emscripten " ,
83
83
target_os = "freebsd" ,
84
84
target_os = "fuchsia" ,
85
85
target_os = "linux" ,
You can’t perform that action at this time.
0 commit comments