mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
3102274d8b
Every ARM cpu config.mk (arch/arm/cpu/{CPUDIR}/config.mk) defines: PLATFORM_RELFLAGS += -fno-common -ffixed-r8 -msoft-float So, this patch moves the common compiler options to arch/arm/config.mk. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
24 lines
666 B
Makefile
24 lines
666 B
Makefile
#
|
|
# (C) Copyright 2002
|
|
# Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
# Marius Groeger <mgroeger@sysgo.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
BIG_ENDIAN = y
|
|
|
|
PLATFORM_RELFLAGS += -mbig-endian
|
|
|
|
PLATFORM_CPPFLAGS += -mbig-endian -march=armv5te -mtune=strongarm1100
|
|
|
|
PLATFORM_LDFLAGS += -EB
|
|
USE_PRIVATE_LIBGCC = yes
|
|
|
|
# =========================================================================
|
|
#
|
|
# 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)
|