-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does libc support EOL versions of freebsd? #2073
Comments
This appears to bump up against #2061, wherein we found out that building for FreeBSDs after 11 is actually secretly mostly a dead letter. |
The issue of changes from one version of an OS/libc to the next seem complicated, but I think this issue is significantly less complicated. I don't want to build for FreeBSD after 11 - I want to build for |
Given the relative range of support Rust currently offers, and that FreeBSD11 only takes us about 5 years back, and not, say, 25, I would think it would not be unreasonable to add support for an API for FreeBSDv11 that is still supported in current versions of FreeBSD, because it's not like we're adding support for a deprecated API then, but I don't have the final say. |
Add it. It will harm nothing.
|
Now FreeBSD 11.4 is EoL. I think we should raise the default ABI to FreeBSD 12. See PR #2406 . |
Triage: we nowadays remove EoL versions of FreeBSD on CI (thanks to contributors!), which means the crate doesn't support such a version officially, but it might work unless we introduce any breaking changes. |
target triple: x86_64-unknown-freebsd
In #1922, I added
clock_nanosleep
to libc for FreeBSD 12. I intentionally avoided adding it to FreeBSD 11 because it was added in FreeBSD 11.1. I read #570 and #1518, but it isn't clear to me whatlibc
's policy is on support for EOL releases like FreeBSD 11.0, discontinued in 2017.This question is phrased generally, but I'm looking to add
clock_nanosleep
to libc's freebsd 11 target so I can merge nix-rust/nix#1315The text was updated successfully, but these errors were encountered: