File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ fn main() {
51
51
let align_cargo_feature = env:: var ( "CARGO_FEATURE_ALIGN" ) . is_ok ( ) ;
52
52
let const_extern_fn_cargo_feature = env:: var ( "CARGO_FEATURE_CONST_EXTERN_FN" ) . is_ok ( ) ;
53
53
let libc_ci = env:: var ( "LIBC_CI" ) . is_ok ( ) ;
54
- let libc_check_cfg = env:: var ( "LIBC_CHECK_CFG" ) . is_ok ( ) ;
54
+ let libc_check_cfg = env:: var ( "LIBC_CHECK_CFG" ) . is_ok ( ) || rustc_minor_ver >= 80 ;
55
55
56
56
if env:: var ( "CARGO_FEATURE_USE_STD" ) . is_ok ( ) {
57
57
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