Przeglądaj źródła

fix mips 64bit toolchains

Waldemar Brodkorb 15 lat temu
rodzic
commit
b25d51a401
1 zmienionych plików z 5 dodań i 1 usunięć
  1. 5 1
      toolchain/gcc/Makefile

+ 5 - 1
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