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
Sometimes it works fine. Sometimes app starts crushing at _setjmp(env) with EXC_BAD_ACCESS in the following code:
_setjmp(env)
EXC_BAD_ACCESS
void __suspend(void* env, void** sp, void* ret, int retVal) { if (_setjmp(env)) return; char x; *sp = (void*)&x; _longjmp(ret, retVal); }
Caused by await.
await
The text was updated successfully, but these errors were encountered:
Are you running it on Apple Silicon? Because that' s when I started getting the same exception. If so, it's probably not an issue with the iOS SDK.
Sorry, something went wrong.
Yes, I have M3 Pro chip
No branches or pull requests
Sometimes it works fine. Sometimes app starts crushing at
_setjmp(env)
withEXC_BAD_ACCESS
in the following code:Caused by
await
.The text was updated successfully, but these errors were encountered: