-
Notifications
You must be signed in to change notification settings - Fork 137
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
can't compile on mips #4
Comments
Also, below android 2.2 (or possibly 2.3) sigaltstack is not available and causes loadLibrary to fail. I tested this on emulator and device. Is there a minimum Android version that is supported? |
Normally 2.2 should be fine! |
Can you test MIPS now ? Issue with "Architecture is unknown" should be fixed by ae35ddb |
It compiles perfectly now on MIPS and catches the error and provides a somewhat proper stacktrace. I don't know if it is just the emulator, the native stacktrace is not very detailed here, it doesn't show the native method names. Is this is a limitation of MIPS or just the emulator? Anyway thanks for the fix!
|
Unfortunately there is no simple way to get the function name directly. However, you can easily get it using addr2line:
(replace PATH_TO_ANDROID_SDK by correct path and use proper architecture, of course) EDIT: with Android >= 4.1.1, you should get the function names (libcorkscrew is used by coffeecatch, if available) |
armeabi works perfectly, but when it comes to the mips part, it won't compile.
Using android-ndk-r9d-windows-x86_64
The text was updated successfully, but these errors were encountered: