-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Unix interop uses non-posix open64 #14099
Comments
Trivial fix without O_LARGEFILE:
|
Thanks, @kangaroo. I'll fix this. |
madsiberian
referenced
this issue
in madsiberian/corefx
Dec 2, 2017
add dotnet version output to release notes
ghost
locked as resolved and limited conversation to collaborators
Jan 7, 2021
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The unix interop layer currently pinvokes open64. open64 is a non-POSIX extension. We should move to using open() with O_LARGEFILE.
This currently blocks using System.Console and System.IO on osx.
The text was updated successfully, but these errors were encountered: