From 90e611cea3ea32a245242102faf94020850c3d70 Mon Sep 17 00:00:00 2001 From: "Tony J. White =" Date: Sun, 24 Sep 2006 00:11:08 +0000 Subject: [PATCH] * Mac OS X ppc version needs to be compiled with an -O flag (-O3 is used) or the client simply neglects to draw most models. I didn't believe it myself, but I can reproduce by compiling with both XCode 2.3 on PPC and XCode 2.4 on x86. Compiler flag voodoo to the extreeeem! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 20591f8e..bf4f65ab 100644 --- a/Makefile +++ b/Makefile @@ -348,7 +348,7 @@ ifeq ($(PLATFORM),darwin) endif ifeq ($(ARCH),ppc) - OPTIMIZE += -faltivec + OPTIMIZE += -faltivec -O3 # Carbon is required on PPC only to make a call to MakeDataExecutable # in the PPC vm (should be a better non-Carbon way). LDFLAGS += -framework Carbon