mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
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>
This commit is contained in:
parent
e914109de4
commit
fa7cff834f
1 changed files with 1 additions and 1 deletions
|
@ -6,4 +6,4 @@
|
||||||
# (C) Copyright 2007
|
# (C) Copyright 2007
|
||||||
# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
||||||
#
|
#
|
||||||
PLATFORM_CPPFLAGS += -m4-nofpu
|
PLATFORM_CPPFLAGS += $(call cc-option,-m4-nofpu,-m4)
|
||||||
|
|
Loading…
Reference in a new issue