diff options
author | Jayachandran C <jayachandranc@netlogicmicro.com> | 2011-06-21 16:06:33 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-10-20 10:00:19 -0400 |
commit | 39ad56805a3bcf259d7549e73a3c9d557c2efd7b (patch) | |
tree | 2dceb6b973b2c5e0de007b606812ab0fa3d06235 /arch | |
parent | a74e33535fa27c758d2a23ebf5f8964bf19940bc (diff) |
MIPS: Netlogic: Specify architecture CFLAGS
Use -march=xlr if available, otherwise fallback to mips64. This allows
us to support compilation with MIPS toolchains which are not customized
for XLR.
[ralf@linux-mips.org: And more importantly it works around a gas bug in
binutils 2.21 which otherwise may result in an assertion failure building
arch/mips/kernel/genex.S. See
http://sourceware.org/bugzilla/show_bug.cgi?id=12915 for details.]
Signed-off-by: Jayachandran C <jayachandranc@netlogicmicro.com>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/2534/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/netlogic/Platform | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/netlogic/Platform b/arch/mips/netlogic/Platform index f87c1640abb5..b648b487fd66 100644 --- a/arch/mips/netlogic/Platform +++ b/arch/mips/netlogic/Platform | |||
@@ -5,6 +5,11 @@ cflags-$(CONFIG_NLM_COMMON) += -I$(srctree)/arch/mips/include/asm/mach-netlogic | |||
5 | cflags-$(CONFIG_NLM_COMMON) += -I$(srctree)/arch/mips/include/asm/netlogic | 5 | cflags-$(CONFIG_NLM_COMMON) += -I$(srctree)/arch/mips/include/asm/netlogic |
6 | 6 | ||
7 | # | 7 | # |
8 | # use mips64 if xlr is not available | ||
9 | # | ||
10 | cflags-$(CONFIG_NLM_XLR) += $(call cc-option,-march=xlr,-march=mips64) | ||
11 | |||
12 | # | ||
8 | # NETLOGIC XLR/XLS SoC, Simulator and boards | 13 | # NETLOGIC XLR/XLS SoC, Simulator and boards |
9 | # | 14 | # |
10 | core-$(CONFIG_NLM_XLR) += arch/mips/netlogic/xlr/ | 15 | core-$(CONFIG_NLM_XLR) += arch/mips/netlogic/xlr/ |