diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-02 15:21:07 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-02 15:21:07 +0100 |
commit | 4b4aef0f846579caa42e0a14d2f63469dd99ba26 (patch) | |
tree | 0572ee2302497f1eaa4ae125761585b5925e8f18 /toolchain/gcc/Makefile | |
parent | 4ef902cae4455605c6d439abf6320bce2d625212 (diff) | |
parent | b25d51a4015d0a228109e00e094d42ddf14e06de (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'toolchain/gcc/Makefile')
-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 |