summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2017-11-27 13:38:29 -0600
committerRob Herring <robh@kernel.org>2017-11-27 13:38:29 -0600
commit0ab36dafaf818c35a258dac0c75b779ab2ae792b (patch)
treebb5e0b76275ae4d7ad3b33ab15fbe5e0ceb42519
parent18ffe485cdfa41d48b6f2d3080cb990d28c27d57 (diff)
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 <robh@kernel.org>
-rw-r--r--Android.common.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.common.mk b/Android.common.mk
index d487acb9..e3de1069 100644
--- a/Android.common.mk
+++ b/Android.common.mk
@@ -5,6 +5,7 @@ LOCAL_CFLAGS += \
-DHAVE_LIBDRM_ATOMIC_PRIMITIVES=1
LOCAL_CFLAGS += \
+ -Wno-error \
-Wno-unused-parameter \
-Wno-missing-field-initializers \
-Wno-pointer-arith \