From 6038030d0bfd5122bd391bde669998c6e8fdf5cf Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 17 Feb 2023 11:48:34 -0500 Subject: [PATCH] no need to check for -fstack-clash-protection This is supported by the compiler versions listed as minimum requirements in the README. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a8ac1e0..34140bf 100644 --- a/Makefile +++ b/Makefile @@ -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)