sdm660-common: data-ipa-cfg-mgr: fix build for Q

This commit is contained in:
Bauuuuu 2019-08-16 09:15:55 +02:00 committed by Max Weffers
parent 81b3fa2e6c
commit f40247437a
No known key found for this signature in database
GPG key ID: 795F73D22FB93FAE

View file

@ -46,7 +46,21 @@ ifeq ($(call is-board-platform-in-list,$(BOARD_ETH_BRIDGE_LIST)),true)
LOCAL_CFLAGS += -DFEATURE_ETH_BRIDGE_LE
endif
LOCAL_CFLAGS += -DFEATURE_IPACM_HAL -Wall -Werror -Wno-error=macro-redefined
LOCAL_CFLAGS += -DFEATURE_IPACM_HAL
LOCAL_CFLAGS += \
-Wall \
-Werror \
-Wno-constant-logical-operand \
-Wno-format \
-Wno-missing-field-initializers \
-Wno-sign-compare \
-Wno-sometimes-uninitialized \
-Wno-unused-parameter \
-Wno-unused-value \
-Wno-unused-variable \
-Wno-writable-strings \
-Wno-error=implicit-fallthrough
ifneq (,$(filter eng, $(TARGET_BUILD_VARIANT)))
LOCAL_CFLAGS += -DDEBUG
endif