Android: disable warnings causing errors
authorRob Herring <robh@kernel.org>
Mon, 27 Nov 2017 19:38:29 +0000 (13:38 -0600)
committerRob Herring <robh@kernel.org>
Mon, 27 Nov 2017 19:38:29 +0000 (13:38 -0600)
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>
Android.common.mk

index d487acb..e3de106 100644 (file)
@@ -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 \