Merge "Disable stack protection explicitly" into integration

This commit is contained in:
Paul Beesley 2019-11-12 13:20:46 +00:00 committed by TrustedFirmware Code Review
commit 494d57e8b8
1 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,9 @@ ifeq (${ENABLE_STACK_PROTECTOR},0)
ENABLE_STACK_PROTECTOR := none
endif
ifneq (${ENABLE_STACK_PROTECTOR},none)
ifeq (${ENABLE_STACK_PROTECTOR},none)
TF_CFLAGS += -fno-stack-protector
else
STACK_PROTECTOR_ENABLED := 1
BL_COMMON_SOURCES += lib/stack_protector/stack_protector.c \
lib/stack_protector/${ARCH}/asm_stack_protector.S