no need to check for -fstack-clash-protection

This is supported by the compiler versions listed as minimum
requirements in the README.
This commit is contained in:
Daniel Micay 2023-02-17 11:48:34 -05:00
parent 4d23fa37ad
commit 6038030d0b
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ endef
CPPFLAGS := $(CPPFLAGS) -D_GNU_SOURCE -I include
SHARED_FLAGS := -pipe -O3 -flto -fPIC -fvisibility=hidden -fno-plt \
$(call safe_flag,-fstack-clash-protection) $(call safe_flag,-fcf-protection) -fstack-protector-strong \
-fstack-clash-protection $(call safe_flag,-fcf-protection) -fstack-protector-strong \
-Wall -Wextra $(call safe_flag,-Wcast-align=strict,-Wcast-align) -Wcast-qual -Wwrite-strings
ifeq ($(CONFIG_WERROR),true)