File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,16 +43,16 @@ fn main() {
43
43
let libc_check_cfg = env:: var ( "LIBC_CHECK_CFG" ) . is_ok ( ) || rustc_minor_ver >= 80 ;
44
44
45
45
// The ABI of libc used by std is backward compatible with FreeBSD 12.
46
- // The ABI of libc from crates.io is backward compatible with FreeBSD 11 .
46
+ // The ABI of libc from crates.io is backward compatible with FreeBSD 12 .
47
47
//
48
48
// On CI, we detect the actual FreeBSD version and match its ABI exactly,
49
49
// running tests to ensure that the ABI is correct.
50
50
let which_freebsd = if libc_ci {
51
- which_freebsd ( ) . unwrap_or ( 11 )
51
+ which_freebsd ( ) . unwrap_or ( 12 )
52
52
} else if rustc_dep_of_std {
53
53
12
54
54
} else {
55
- 11
55
+ 12
56
56
} ;
57
57
match which_freebsd {
58
58
x if x < 10 => panic ! ( "FreeBSD older than 10 is not supported" ) ,
You can’t perform that action at this time.
0 commit comments