diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-02 15:12:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-02 15:12:16 +0100 |
commit | b25d51a4015d0a228109e00e094d42ddf14e06de (patch) | |
tree | dce244d4d3e64b0d2b97d571828077299f49298f | |
parent | 1a0bc22e751dc1a91073e47b61a4135cec549633 (diff) |
fix mips 64bit toolchains
-rw-r--r-- | toolchain/gcc/Makefile | 6 |
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 |