disable annoying Clang warning from avoiding ifdef
This commit is contained in:
parent
b672316bc7
commit
cf55ac0f6d
@ -10,6 +10,7 @@ common_cflags = [
|
||||
"-Wcast-align",
|
||||
"-Wcast-qual",
|
||||
"-Wwrite-strings",
|
||||
"-Wno-constant-logical-operand",
|
||||
"-Werror",
|
||||
"-DH_MALLOC_PREFIX",
|
||||
"-DZERO_ON_FREE=true",
|
||||
|
4
Makefile
4
Makefile
@ -30,6 +30,10 @@ SHARED_FLAGS := -O3 -flto -fPIC -fvisibility=hidden $(call safe_flag,-fno-plt) \
|
||||
$(call safe_flag,-fstack-clash-protection) -fstack-protector-strong -pipe -Wall -Wextra \
|
||||
$(call safe_flag,-Wcast-align=strict,-Wcast-align) -Wcast-qual -Wwrite-strings
|
||||
|
||||
ifeq ($(CC),clang)
|
||||
SHARED_FLAGS += -Wno-constant-logical-operand
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_WERROR),true)
|
||||
SHARED_FLAGS += -Werror
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user