aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2017-11-22 17:38:11 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-11-22 17:38:11 +0000
commit003274b4599f2980c31c21742f3d2d5b18639c57 (patch)
tree3b75578017e8b8e778ecf2f0f09b2131c48749d6
parent2f1967ee9522aeefe3b7bff083e75f3c59412939 (diff)
parent7cdcf21d5bbfbb2a0898054278fe5389faa294a0 (diff)
downloadbison-003274b4599f2980c31c21742f3d2d5b18639c57.tar.gz
Merge "Suppress shift-count-overflow warning on Darwin."
am: 7cdcf21d5b Change-Id: Iab3fbc3544fa36905816377cb679f34068396ab7
-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