Cocos2dx跨平台编译Android错误:format not a string literal and no format arguments [-Werror=format-security]

前端之家收集整理的这篇文章主要介绍了Cocos2dx跨平台编译Android错误:format not a string literal and no format arguments [-Werror=format-security]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Cocos2dx 编译Android版时,提示出错:

  1. CCLOG(petname->getCString());

error: format not a string literal and no format arguments[-Werror=format-security];

在强大网友的帮助下,找到一个问题的解决办法:

在对应项目的proj.android/jni/Application.mk添加
APP_CFLAGS += -Wno-error=format-security

这是因为android-ndk-r9与Eclipse的版本不兼容导致的问题;

APP_CFLAGS : 一个C编译器开关集合,在编译任意模块的任意C或C++源代码时传递。它可以用于改变一个给定的应用程序需要依赖的模块的构建,而不是修改它自身的 Android.mk文件。在这里format-security即忽略上述错误(其实我之前也没看过Application.mk的内容,用到的时候再 研究吧)。 原文链接:https://www.f2er.com/cocos2dx/340997.html

猜你在找的Cocos2d-x相关文章