Error format not a string literal and no format arguments解決方案

joeblackzqq發表於2014-05-16

From: http://www.cnblogs.com/hhuang2012/p/3336911.html

場景: 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

可以解決編譯出錯問題, 如有更好方案, 請不吝賜教.


相關文章