aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authortjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-09-24 00:11:08 +0000
committertjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-09-24 00:11:08 +0000
commit23e2d7c93652f7b2d2ecf6c9174bf649a76a186d (patch)
tree28146c24c9807ad42baba6d898d6636a493821a3 /Makefile
parent698e356d6ab6664ee151bbfb66751d974b5c6bc6 (diff)
downloadioquake3-aero-23e2d7c93652f7b2d2ecf6c9174bf649a76a186d.tar.gz
ioquake3-aero-23e2d7c93652f7b2d2ecf6c9174bf649a76a186d.zip
* 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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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