Linker errors in Android NDK (undefined reference to `__cxa_end_cleanup')

前端 未结 5 2192
灰色年华
灰色年华 2021-02-07 03:43

I\'m getting this output after adding in a set of code from a colleague:

./obj/local/armeabi/objs/jniWrapper/native.o: In function `_Vector_base\':
D:/opt/androi         


        
5条回答
  •  有刺的猬
    2021-02-07 03:58

    Take a look here: Linux C++: Linker is outputting strange errors.

    In Android's Application.mk this would be:

    APP_CPPFLAGS := -frtti
    

提交回复
热议问题