From 66b31c94b969273b8bd8d04d355fbf47819cb550 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Fri, 12 Oct 2007 10:25:13 +0000 Subject: [PATCH] actually build 64bit binaries on ppc64 --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index ba39d1f8..f8748a18 100644 --- a/Makefile +++ b/Makefile @@ -257,6 +257,11 @@ ifeq ($(PLATFORM),linux) # linux32 make ... BASE_CFLAGS += -m32 LDFLAGS+=-m32 + else + ifeq ($(ARCH),ppc64) + BASE_CFLAGS += -m64 + LDFLAGS += -m64 + endif endif DEBUG_CFLAGS = $(BASE_CFLAGS) -g -O0