Compiling ICU for Android - 'uint64_t' does not name a type

后端 未结 5 944
伪装坚强ぢ
伪装坚强ぢ 2021-01-13 12:54

While attempting to cross-compile ICU using android-ndk-r7 in Linux, the following error occurs after configuration when I run \'make\'

__/android-ndk-r7/pla         


        
5条回答
  •  庸人自扰
    2021-01-13 13:15

    Update to NDK 8e it supports more things from C++11

    Also your Application.mk should contains some flags look at my file

    APP_STL := gnustl_static
    APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 -std=c++11 -DDEBUG=1
    APP_USE_CPP0X := true
    NDK_TOOLCHAIN_VERSION=4.7
    

提交回复
热议问题