aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-11-22 17:29:28 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-11-22 17:29:28 +0000
commit7cdcf21d5bbfbb2a0898054278fe5389faa294a0 (patch)
tree3b75578017e8b8e778ecf2f0f09b2131c48749d6
parent9daf3ca0930745604c1a0b790223269c48877b4b (diff)
parent471dff19d06c420a6dcf1d69e0518e862cbc1ce2 (diff)
downloadbison-7cdcf21d5bbfbb2a0898054278fe5389faa294a0.tar.gz
Merge "Suppress shift-count-overflow warning on Darwin."
-rw-r--r--Android.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index cb8753b4..a0a3cfb6 100644
--- a/Android.mk
+++ b/Android.mk
@@ -15,8 +15,7 @@
LOCAL_PATH:= $(call my-dir)
ifeq ($(HOST_OS),darwin)
-# No -Werror for darwin yet. Need to fix/suppress more warnings.
-BISON_WERROR :=
+BISON_WERROR := -Wno-shift-count-overflow
else
BISON_WERROR := -Werror
endif