-
Notifications
You must be signed in to change notification settings - Fork 157
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
segfault launching coroutine on M1 OSX #208
Comments
|
Interestingly this only happens when using the apple provided compiler
vs
|
Thanks MobiusHorizons, has the same issue. |
-fno-stack-check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Attempting to run a trivial example (the one from the libdill homepage) on osx on an M1 (arm 64) results in a segfault.
Debugging the code points to an invalid memory access in the
___chkstk_darwin
function, which seems to have been added by the compiler, since I don't see any references to it in the code.I attempted to build the code with
-fno-stack-protector
but that didn't fix the problem.If you anyone can point me in the right direction I will be happy to work on a fix.
The text was updated successfully, but these errors were encountered: