xref: /OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/config.mk (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#
2# (C) Copyright 2002
3# Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
4#
5# SPDX-License-Identifier:	GPL-2.0+
6#
7
8# On supported platforms we set the bit which causes us to trap on unaligned
9# memory access.  This is the opposite of what the compiler expects to be
10# the default so we must pass in -mno-unaligned-access so that it is aware
11# of our decision.
12PF_NO_UNALIGNED := $(call cc-option, -mno-unaligned-access,)
13PLATFORM_CPPFLAGS += $(PF_NO_UNALIGNED)
14
15ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),)
16PLATFORM_CPPFLAGS += -mabi=aapcs-linux -funwind-tables
17endif
18