diff options
author | Tom Rini <trini@konsulko.com> | 2018-02-17 17:30:38 -0500 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-02-21 23:42:47 +0100 |
commit | 036c9679d25cba87e7b82dc18d6f5f939d9806dd (patch) | |
tree | 4298d7099c1018d71f0a0a884fddedf367360418 | |
parent | f0f6917188ad660cf002c10095f46ecf748b8f58 (diff) | |
download | u-boot-036c9679d25cba87e7b82dc18d6f5f939d9806dd.tar.gz |
sh: Use -m2a-nofpu only
Based on reading over the GCC manual, passing both -m2a and -m2a-nofpu
are redundant, as -m2a-nofpu will provide functional code for both. As
-m2a-nofpu functions with more toolchains and does what is expected,
switch.
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | arch/sh/cpu/sh2/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/cpu/sh2/config.mk b/arch/sh/cpu/sh2/config.mk index 12e202d539..a063e8361c 100644 --- a/arch/sh/cpu/sh2/config.mk +++ b/arch/sh/cpu/sh2/config.mk @@ -8,7 +8,7 @@ ENDIANNESS += -EB ifdef CONFIG_CPU_SH2A -PLATFORM_CPPFLAGS += -m2a -m2a-nofpu -mb +PLATFORM_CPPFLAGS += -m2a-nofpu -mb else # SH2 PLATFORM_CPPFLAGS += -m3e -mb endif |