-
Notifications
You must be signed in to change notification settings - Fork 86
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
error: undefined reference to 'jsimd_can_rgb_gray' #1
Comments
You need NDK 10e or later. |
Already upgrade to NDK 10e I solved the problem, but i don't know if it is right Modify file vendor/libjpeg-turbo/Android.mk change line 87
to
|
Hmm, well, actually I think our README is a bit wrong... |
In principle, there are ARM processors with NEON, and this can be sniffed at runtime. But this is probably not worth the effort. As of 12/26/2015, the official statistics page shows less than 3.5% of all Android devices running versions below Ice Cream Sandwich, which are potentially capable to run on ARM v6. |
Yes, libjpeg-turbo can actually do the runtime check. However since it's impossible for me to even try it out without having access to a plain armeabi device (preferably one without neon and one with neon, so two in total), and have never even seen one in person, I never bothered. If someone wants to sponsor a new device or donate their old used device for the cause, I could probably take a look. |
to solve the problem you need to add the jsimd_none.c in the armeabi section. In Android.mk, change this:
to this:
|
I'm not familiar with makefile, please help.
I meet errors when linking libjpeg-turbo to my own module.
here is my module's android.mk
The text was updated successfully, but these errors were encountered: