We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This snippet checks for the existence of /usr/lib/libffi.dylib on Darwin and uses it if it is found:
/usr/lib/libffi.dylib
nu/Nukefile
Lines 63 to 68 in 1b0cd7f
This check always fails on macOS Big Sur because system libraries can no longer be found on the file system. (See, for example, https://developer.apple.com/forums/thread/655588.)
The headers are also no longer in /usr/include -- they can be found in the SDK, if installed. (Try xcrun -show-sdk-path.)
/usr/include
xcrun -show-sdk-path
Fixing this would also resolve #97, because the system libffi does provide ffi_prep_closure.
libffi
ffi_prep_closure
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This snippet checks for the existence of
/usr/lib/libffi.dylib
on Darwin and uses it if it is found:nu/Nukefile
Lines 63 to 68 in 1b0cd7f
This check always fails on macOS Big Sur because system libraries can no longer be found on the file system. (See, for example, https://developer.apple.com/forums/thread/655588.)
The headers are also no longer in
/usr/include
-- they can be found in the SDK, if installed. (Tryxcrun -show-sdk-path
.)Fixing this would also resolve #97, because the system
libffi
does provideffi_prep_closure
.The text was updated successfully, but these errors were encountered: