summaryrefslogtreecommitdiff
path: root/lib/stack_protector/stack_protector.mk
blob: 0f0d90fb8aac0874a026bebb863abf241c6e4e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#

# Boolean macro to be used in C code
STACK_PROTECTOR_ENABLED := 0

ifneq (${ENABLE_STACK_PROTECTOR},0)
STACK_PROTECTOR_ENABLED := 1
BL_COMMON_SOURCES	+=	lib/stack_protector/stack_protector.c			\
				lib/stack_protector/${ARCH}/asm_stack_protector.S

TF_CFLAGS		+=	-fstack-protector-${ENABLE_STACK_PROTECTOR}
endif

$(eval $(call add_define,STACK_PROTECTOR_ENABLED))