mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
bf1af3d872
Before this commit, all arch/arm/cpu/${CPU}/config.mk except ARMv8 had the same option: $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) This commit moves it into arch/arm/config.mk. If the compiler does not support the option, it is ignored by $(call cc-option,...). So this commit gives no harm to ARMv8. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
25 lines
620 B
Makefile
25 lines
620 B
Makefile
#
|
|
# (C) Copyright 2002
|
|
# Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
# If armv7-a is not supported by GCC fall-back to armv5, which is
|
|
# supported by more tool-chains
|
|
PF_CPPFLAGS_ARMV7 := $(call cc-option, -march=armv7-a, -march=armv5)
|
|
PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARMV7)
|
|
|
|
# SEE README.arm-unaligned-accesses
|
|
PF_NO_UNALIGNED := $(call cc-option, -mno-unaligned-access,)
|
|
PLATFORM_NO_UNALIGNED := $(PF_NO_UNALIGNED)
|
|
|
|
ifneq ($(CONFIG_IMX_CONFIG),)
|
|
ifdef CONFIG_SPL
|
|
ifdef CONFIG_SPL_BUILD
|
|
ALL-y += $(OBJTREE)/SPL
|
|
endif
|
|
else
|
|
ALL-y += $(obj)u-boot.imx
|
|
endif
|
|
endif
|