summaryrefslogtreecommitdiff
path: root/toolchain/gcc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-02 15:12:16 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-02 15:12:16 +0100
commitb25d51a4015d0a228109e00e094d42ddf14e06de (patch)
treedce244d4d3e64b0d2b97d571828077299f49298f /toolchain/gcc
parent1a0bc22e751dc1a91073e47b61a4135cec549633 (diff)
fix mips 64bit toolchains
Diffstat (limited to 'toolchain/gcc')
-rw-r--r--toolchain/gcc/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile
index 6c543298e..5df3c10d0 100644
--- a/toolchain/gcc/Makefile
+++ b/toolchain/gcc/Makefile
@@ -32,7 +32,11 @@ ifeq ($(ADK_TARGET_NO_FPU),y)
GCC_CONFOPTS+= --with-float=soft
endif
-ifeq ($(ADK_LINUX_MIPS64_LEMOTE),y)
+ifeq ($(ADK_LINUX_MIPS64),y)
+GCC_CONFOPTS+= --with-abi=64
+endif
+
+ifeq ($(ADK_LINUX_MIPS64EL),y)
GCC_CONFOPTS+= --with-abi=64
endif