r915 - trunk
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat Sep 23 20:11:08 EDT 2006
Author: tjw
Date: 2006-09-23 20:11:08 -0400 (Sat, 23 Sep 2006)
New Revision: 915
Modified:
trunk/Makefile
Log:
* 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!
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2006-09-23 15:25:34 UTC (rev 914)
+++ trunk/Makefile 2006-09-24 00:11:08 UTC (rev 915)
@@ -348,7 +348,7 @@
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
More information about the quake3-commits
mailing list