[obj/local/armeabi/objs/game_shared/hellocpp/main.o] Error 1解决办法

在Eclipse上使用NDK编译cocos2d-x引擎写的游戏时出现了

jni/hellocpp/main.cpp: In function 'jint JNI_OnLoad(JavaVM*, void*)':
jni/hellocpp/main.cpp:16:6: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
make: *** [obj/local/armeabi/objs/game_shared/hellocpp/main.o] Error 1

这时你先试试在Application.mk里面添加APP_PLATFORM := android-8

如果添加完成后还没有解决你的问题的话,你就把NDK删除了重现拷贝一份新的,在编译试试。我在Application.mk里面添加APP_PLATFORM := android-8添加了没有解决我的问题,最后我把NDK删除了重现拷贝一份新的就可以正常编译了。

你可能感兴趣的:(android)