NDK编译错误

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


忽略掉这个问题


在对应项目的proj.android/jni/Application.mk添加一句话

  APP_CFLAGS += -Wno-error=format-security

  意思就是无视这个error


据说是NDK和Eclipse不兼容

你可能感兴趣的:(android,NDK)