-
Notifications
You must be signed in to change notification settings - Fork 64
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
I added missing library #114
Conversation
without #include <android_native_app_glue.h> library, i was taking incomplete definitions code error see: cntools#113 after reverse engineering (i added and deleted many libraries and ordered to WSL 'make run' and as conclusion i discovered essential library is glue library), i found which library is missing I still have another error, but it is fix of this error
This may fix your specific case but it is definitely incorrect, overall. CNFG_IMPLEMENTATION MUST be before you include "rawdraw_sf.h" The example shows typical usage, which does not include rawdraw in the build system, it's a header-only library. |
i used and crashed again |
I can believe that, but that would mean that it's an issue with what files you're including in the build system. |
|
this place would be more easy to read
|
Is your issue. You will need to define HandleSuspend() |
without
#include <android_native_app_glue.h>
library,
i was taking incomplete definitions code error
see: #113
after reverse engineering (i added and deleted many libraries and ordered to WSL 'make run' and as conclusion i discovered essential library is glue library), i found which library is missing
I still have another error, but it is fix of this error