From 4d23fa37ad579b197b7a18b0210cb75ae898f62c Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 17 Feb 2023 11:43:58 -0500 Subject: [PATCH] enable Intel CET support --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0f9a797..a8ac1e0 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) -fstack-protector-strong \ + $(call safe_flag,-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)