mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 06:12:58 +00:00
08f11151c2
-ffixed-r13 is defined commonly for sh2, sh3, sh4. Move it to arch/sh/config.mk Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
17 lines
336 B
Makefile
17 lines
336 B
Makefile
#
|
|
# (C) Copyright 2007-2008
|
|
# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
#
|
|
ENDIANNESS += -EB
|
|
|
|
ifdef CONFIG_SH2A
|
|
PLATFORM_CPPFLAGS += -m2a -m2a-nofpu -mb
|
|
else # SH2
|
|
PLATFORM_CPPFLAGS += -m3e -mb
|
|
endif
|
|
PLATFORM_CPPFLAGS += -DCONFIG_SH2 $(call cc-option,-mno-fdpic)
|
|
|
|
PLATFORM_LDFLAGS += $(ENDIANNESS)
|