-
-
Notifications
You must be signed in to change notification settings - Fork 11k
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
Segmentation fault using self-built version. #3658
Comments
Thank you for your report. Could you please build with ASAN enabled and run, as follow:
That will give the complete stacktrace. |
Thank you for your reply. The full stacktrace is:
By the way, my computer configuration is:
and the version I download using Thank you! |
For some reason, during execution it uses SDL 1.2 (but you compiled against SDL 2, otherwise meson would have failed). In SDL 1.2, the signature of
In SDL 2.x, the signature is:
Therefore, in the end, what is called by the caller is
So TL;DR: the problem is that it is run against SDL 1.2 (check the output of |
Indeed, my computer install both of SDL1.2 and SDL2 at same time. Maybe this line Now I remove SDL 1.2 in my computer, the problem solved. Thank you for your help ! |
I downloaded the source code, and checkout the tag V1.25. I build following the BUILD document
then got the an error as below (build as release version):
after I change the buildtype as debug in install_release.sh, and do again, got the following error log:
Did I missing some operations ? Thanks a lot !
The text was updated successfully, but these errors were encountered: