-
Notifications
You must be signed in to change notification settings - Fork 74
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
Returning error if offset doesn't fit into libc::off_t. #86
Conversation
I guess the |
I just noticed that libc actually defines |
@adamreichold Looks like it's not available for |
The libc sources say
I though this macro only controls whether these 64-bit wide interface replace the default interfaces or stay add-ons? But they are always available as add-ons (for glibc)? In any case, I'd say it would be preferable to use |
I haven't been able to understand what they mean. But I would assume that I will try adding musl target to CI. |
Yes, my understanding is that Musl v1.2+ on 32-bit platforms has |
The logic could be: use Problem is, I have no idea how to do that. I tried detecting if |
@lvella Too complicated. Let's try using |
Slightly improves the situation of issue #85.