error: format not a string literal and no format arguments

使用android studio, 如果编译jni过程出现如下错误:
error: format not a string literal and no format arguments [-Werror=format-security]
解决方法:
在你的ndk目录下修改build/core/default-build-commands.mk
TARGET_FORMAT_STRING_CFLAGS := -Wformat -Werror=format-security

TARGET_FORMAT_STRING_CFLAGS := -Wformat   #-Werror=format-security
也就是把后面部分注释掉
发布了52 篇原创文章 · 获赞 7 · 访问量 9万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章