tess-two编译失败-----NDK build for target x86_64 results in error

来源:互联网 发布:js中的object对象 编辑:程序博客网 时间:2024/06/10 02:17

借鉴 http://stackoverflow.com/questions/24538343/ndk-build-for-target-x86-64-results-in-error 下面的方法:



down vote

The platform you're using doesn't support that targets, you must change your APP_PLATFORM (minimum is android-21 for 64bit support) or remove the unsupported ABI. For example:

APP_ABI := armeabi armeabi-v7a mips  x86 APP_PLATFORM := android-14

or

APP_ABI := armeabi armeabi-v7a mips  x86 arm64-v8a x86_64 mips64APP_PLATFORM := android-21

将tess-two文件中的\jni目录下Application.mk文件修改以上内容,然后打开cmd,再cd到tess-two目录,输入ndk-build即可编译,但我这里编译出错,待解决!!

0down vote

The platform you're using doesn't support that targets, you must change your APP_PLATFORM (minimum is android-21 for 64bit support) or remove the unsupported ABI. For example:

APP_ABI := armeabi armeabi-v7a mips  x86 APP_PLATFORM := android-14

or

APP_ABI := armeabi armeabi-v7a mips  x86 arm64-v8a x86_64 mips64APP_PLATFORM := android-21
0 0
原创粉丝点击