From: Tom Rini Date: Sat, 17 Feb 2018 22:30:38 +0000 (-0500) Subject: sh: Use -m2a-nofpu only X-Git-Tag: v2018.03-rc4~44^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=036c9679d25cba87e7b82dc18d6f5f939d9806dd;p=u-boot 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 Signed-off-by: Tom Rini --- 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