diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-26 14:51:02 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-04 09:27:40 -0500 |
commit | aceba5a5cff05c14b9352244d931019b2d92b8fd (patch) | |
tree | f8203fb27750199e7e502598ade055c43396d68c /arch/sh/cpu | |
parent | f694183ba1858ef7dfa4fec195e61aa3afa85f63 (diff) |
sh: Do not define -ffreestanding twice
-ffreestanding is defined at the top Makefile for all architectures.
Do not define it twice for SH2A.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Diffstat (limited to 'arch/sh/cpu')
-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 69273b4f382..25abcdd48f0 100644 --- a/arch/sh/cpu/sh2/config.mk +++ b/arch/sh/cpu/sh2/config.mk @@ -8,7 +8,7 @@ ENDIANNESS += -EB ifdef CONFIG_SH2A -PLATFORM_CPPFLAGS += -m2a -m2a-nofpu -mb -ffreestanding +PLATFORM_CPPFLAGS += -m2a -m2a-nofpu -mb else # SH2 PLATFORM_CPPFLAGS += -m3e -mb endif |