error: format not a string literal and no format arguments

来源:互联网 发布:openwrt nginx服务器 编辑:程序博客网 时间:2024/06/06 08:38
使用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
也就是把后面部分注释掉
0 0