From fab162712124e731547019b4bd3e481c16badf5c Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Mon, 23 Feb 2015 09:35:47 +0100 Subject: [PATCH] Android.mk: Turn off warnings for libvpx --- submodules/externals/build/libvpx/Android.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/submodules/externals/build/libvpx/Android.mk b/submodules/externals/build/libvpx/Android.mk index fd9f09d94..de63d94ec 100755 --- a/submodules/externals/build/libvpx/Android.mk +++ b/submodules/externals/build/libvpx/Android.mk @@ -4,4 +4,7 @@ include $(CLEAR_VARS) LOCAL_MODULE := libvpx LOCAL_SRC_FILES := $(TARGET_ARCH)/libvpx.a +#turn off warnings since we cannot fix them +LOCAL_CFLAGS += -w + include $(PREBUILT_STATIC_LIBRARY)