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


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

使用android studio, 如果编译jni过程出现如下错误:

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

解决方法:

在你的ndk目录下修改build/core/default-build-commands.mk

1
TARGET_FORMAT_STRING_CFLAGS := -Wformat -Werror=format-security

1
TARGET_FORMAT_STRING_CFLAGS := -Wformat   #-Werror=format-security

也就是把后面部分注释掉