* 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!
This commit is contained in:
Tony J. White = 2006-09-24 00:11:08 +00:00
parent d45ece8223
commit 90e611cea3
1 changed files with 1 additions and 1 deletions

View File

@ -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