From: Marek Vasut Date: Sat, 14 Sep 2019 17:05:38 +0000 (+0200) Subject: sh: Fix SH4 build with GCC versions without -m4-nofpu X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=fa7cff834f2b510ec37027b6d4c5e9f87efea3d3;p=u-boot.git sh: Fix SH4 build with GCC versions without -m4-nofpu Pass -m4 instead of -m4-nofpu to GCC versions which do not support the -m4-nofpu option. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- diff --git a/arch/sh/cpu/sh4/config.mk b/arch/sh/cpu/sh4/config.mk index d62d285e60..23fec66492 100644 --- a/arch/sh/cpu/sh4/config.mk +++ b/arch/sh/cpu/sh4/config.mk @@ -6,4 +6,4 @@ # (C) Copyright 2007 # Nobuhiro Iwamatsu # -PLATFORM_CPPFLAGS += -m4-nofpu +PLATFORM_CPPFLAGS += $(call cc-option,-m4-nofpu,-m4)