File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,16 +43,16 @@ fn main() {
4343 let libc_check_cfg = env:: var ( "LIBC_CHECK_CFG" ) . is_ok ( ) || rustc_minor_ver >= 80 ;
4444
4545 // 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 .
4747 //
4848 // On CI, we detect the actual FreeBSD version and match its ABI exactly,
4949 // running tests to ensure that the ABI is correct.
5050 let which_freebsd = if libc_ci {
51- which_freebsd ( ) . unwrap_or ( 11 )
51+ which_freebsd ( ) . unwrap_or ( 12 )
5252 } else if rustc_dep_of_std {
5353 12
5454 } else {
55- 11
55+ 12
5656 } ;
5757 match which_freebsd {
5858 x if x < 10 => panic ! ( "FreeBSD older than 10 is not supported" ) ,
You can’t perform that action at this time.
0 commit comments