mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
27 lines
705 B
Makefile
27 lines
705 B
Makefile
#
|
|
# (C) Copyright 2002
|
|
# Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
PLATFORM_RELFLAGS += -fno-common -ffixed-r8 -msoft-float
|
|
|
|
PLATFORM_CPPFLAGS += -march=armv5te
|
|
# =========================================================================
|
|
#
|
|
# Supply options according to compiler version
|
|
#
|
|
# =========================================================================
|
|
PF_RELFLAGS_SLB_AT := $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))
|
|
PLATFORM_RELFLAGS += $(PF_RELFLAGS_SLB_AT)
|
|
|
|
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
|