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

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
也就是把后面部分注释掉

转自:http://blog.chinaunix.net/uid-20680966-id-4961545.html

你可能感兴趣的:(format-security)