NDK note: the mangling of 'va_list' has changed in GCC 4.4

每次ndk-build都会提示:

In file included from jni/fskmodule.cpp:7:0:
/xxxx/usr/include/jni.h:592:13: note: the mangling of 'va_list' has changed in GCC 4.4

解决办法,修改 Android.mk,加一行:

LOCAL_CFLAGS = -Wno-psabi

转载于:https://www.cnblogs.com/zsw-1993/archive/2012/11/19/4880636.html

你可能感兴趣的:(NDK note: the mangling of 'va_list' has changed in GCC 4.4)