diff options
author | Marek Vasut | 2019-09-14 19:05:38 +0200 |
---|---|---|
committer | Marek Vasut | 2019-09-14 21:28:55 +0200 |
commit | fa7cff834f2b510ec37027b6d4c5e9f87efea3d3 (patch) | |
tree | 8b961af6ef0e31e5ef28b4d8adc3573170a5bd13 | |
parent | e914109de48d3baf8baf8a2fcada78a0dbe7757c (diff) |
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 <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
-rw-r--r-- | arch/sh/cpu/sh4/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/cpu/sh4/config.mk b/arch/sh/cpu/sh4/config.mk index d62d285e606..23fec664929 100644 --- a/arch/sh/cpu/sh4/config.mk +++ b/arch/sh/cpu/sh4/config.mk @@ -6,4 +6,4 @@ # (C) Copyright 2007 # Nobuhiro Iwamatsu <iwamatsu@nigauri.org> # -PLATFORM_CPPFLAGS += -m4-nofpu +PLATFORM_CPPFLAGS += $(call cc-option,-m4-nofpu,-m4) |