cocos2dx android版本移植时的Error format not a string literal and no format arguments解决方案

来源:互联网 发布:博途软件下载 编辑:程序博客网 时间:2024/06/05 08:02

场景: cocos2dx 跨平台开发, 移植Android版本时, 当进行到build_native.sh步骤后

ndk版本: android-ndk-r9

开发环境: mac os 64bit, Android+Eclipse

BUG:

  CCCommon.cpp:54:77: error: format not a string literal and no format arguments [-Werror=format-security]

原因:

  android-ndk-r9与Eclipse的版本不兼容问题

方案之一(我搜到的):

  在对应项目的proj.android/jni/Application.mk添加一句话

  APP_CFLAGS += -Wno-error=format-security

  意思就是无视这个error

可以解决编译出错问题, 如有更好方案, 请不吝赐教.

原创粉丝点击