diff options
author | Rob Herring <[email protected]> | 2017-11-27 13:32:19 -0600 |
---|---|---|
committer | Rob Herring <[email protected]> | 2017-11-27 17:26:45 -0600 |
commit | 46148be8e45db0587622535dab4e1064c3503705 (patch) | |
tree | 8cf406930faeec73157a608c8635a9256937a3c1 /Android.common.mk | |
parent | 3e789026cae21e56d07e21773bd6b34f32e31b4d (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 <[email protected]>
Diffstat (limited to 'Android.common.mk')
-rw-r--r-- | Android.common.mk | 1 |
1 files changed, 1 insertions, 0 deletions
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 \ |