mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
* 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:
parent
d45ece8223
commit
90e611cea3
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
|
Loading…
Reference in a new issue