From d2ca308a8e6278439808c9b003f1f522b0bce177 Mon Sep 17 00:00:00 2001 From: albert <> Date: Wed, 18 Aug 2004 02:24:06 +0000 Subject: [PATCH] MIPS needs -mabi=64 instead of -m64 (lusers) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2519179d..08160f56 100644 --- a/Makefile +++ b/Makefile @@ -132,7 +132,7 @@ ALL_CFLAGS += $(call check_gcc,-fno-inline-functions,) # produce separate executables for ppc and ppc64, s390 and s390x, # i386 and x86-64, mips and mips64, sparc and sparc64, and so on. # Failure to do so will cause data corruption. -m64 := $(call check_gcc,-m64,) +m64 := $(call check_gcc,-m64,$(call check_gcc,-mabi=64,)) ALL_CFLAGS += $(m64) endif