From 23e2d7c93652f7b2d2ecf6c9174bf649a76a186d Mon Sep 17 00:00:00 2001 From: tjw Date: Sun, 24 Sep 2006 00:11:08 +0000 Subject: * 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! git-svn-id: svn://svn.icculus.org/quake3/trunk@915 edf5b092-35ff-0310-97b2-ce42778d08ea --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 20591f8..bf4f65a 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 -- cgit v1.2.3