From: Rob Herring Date: Mon, 27 Nov 2017 19:32:19 +0000 (-0600) Subject: Android: disable warnings causing errors X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46148be8e45db0587622535dab4e1064c3503705;p=mesa.git Android: disable warnings causing errors AOSP master has changed the build default to -Werror making all the warnings errors. Override that with -Wno-error. Signed-off-by: Rob Herring --- diff --git a/Android.common.mk b/Android.common.mk index 5671c1c1a59..fcd9a874d53 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -31,6 +31,7 @@ LOCAL_C_INCLUDES += \ MESA_VERSION := $(shell cat $(MESA_TOP)/VERSION) LOCAL_CFLAGS += \ + -Wno-error \ -Wno-unused-parameter \ -Wno-pointer-arith \ -Wno-missing-field-initializers \