Error format not a string literal and no format arguments解決方案
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
可以解決編譯出錯問題, 如有更好方案, 請不吝賜教.
相關文章
- ORA-01861: literal does not match format stringORM
- 問題解決:TypeError: unsupported format string passed to NoneType.__format__ErrorORMNone
- 求助:TypeError: unsupported format string passed to NoneType.__format__ErrorORMNone
- MySQL錯誤Incorrect file format解決方案薦MySqlORM
- fmt包String(),Error(),Format(),GoString()的介面實現ErrorORMGo
- C# String.FormatC#ORM
- C# string Format示例C#ORM
- JAVA中String format的用法JavaORM
- 'format' 詳解ORM
- golang的fmt包String(),Error(),Format(),GoString()的介面實現GolangErrorORM
- 連結字串String.prototype.format字串ORM
- spring.jackson.date-format失效原因及解決方案SpringORM
- 千份位Javascript Thousand Separator / string formatJavaScriptORM
- JAVA String.format 方法使用介紹JavaORM
- C# String.Format格式說明C#ORM
- c#之string.format方法示例C#ORM
- DBMS_UTILITY.FORMAT_ERROR_BACKTRACE FunctionORMErrorFunction
- Format and un-format money/currency in JavaScriptORMJavaScript
- String.format VS. StrSubstitutor VS. NamedParameterJdbcTemplateORMJDBC
- java 字串格式化String.format()使用Java字串格式化ORM
- struct.error: 'h' format requires -32768 number 32767StructErrorORMUI
- mongodb錯誤解決辦法-bash: ./mongod: cannot execute binary file: Exec format errorMongoDBORMError
- tar包解壓not in gzip format的解決辦法ORM
- JAVA字串格式化-String.format()的使用Java字串格式化ORM
- Java中String.format變得更快 - MilošJavaORM
- JavaScript & PHP模仿C#中string.format效果JavaScriptPHPC#ORM
- string.Format對C#字串格式化ORMC#字串格式化
- JDK1.5中的String.format的用法JDKORM
- Mysql date_format 與 Oracle to_char(date,’format’)MySqlORMOracle
- SUN format命令ORM
- Json formatJSONORM
- set excel formatExcelORM
- date_format(date,frm) 詳解ORM
- .NET String.Format 方法 執行緒安全問題ORM執行緒
- C#中string.format格式轉化總結C#ORM
- SyntaxError: EOL while scanning string literal錯誤解決ErrorWhile
- sqlplus"strace: exec: Exec format error"故障處理SQLORMError
- 安裝git-format-staged後,Sourcetree中提交程式碼報錯的解決方案GitORM