We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af676d1 commit d3f5a15Copy full SHA for d3f5a15
build.rs
@@ -57,7 +57,7 @@ fn main() {
57
}
58
59
// The ABI of libc used by libstd is backward compatible with FreeBSD 10.
60
- // The ABI of libc from crates.io is backward compatible with FreeBSD 11.
+ // The ABI of libc from crates.io is backward compatible with FreeBSD 12.
61
//
62
// On CI, we detect the actual FreeBSD version and match its ABI exactly,
63
// running tests to ensure that the ABI is correct.
@@ -67,7 +67,7 @@ fn main() {
67
Some(12) if libc_ci => set_cfg("freebsd12"),
68
Some(13) if libc_ci => set_cfg("freebsd13"),
69
Some(14) if libc_ci => set_cfg("freebsd14"),
70
- Some(_) | None => set_cfg("freebsd11"),
+ Some(_) | None => set_cfg("freebsd12"),
71
72
73
match emcc_version_code() {
0 commit comments