mirror of https://github.com/snes9xgit/snes9x.git
(OSX PPC) Add more OSX PPC rules
This commit is contained in:
parent
9730ca3bdb
commit
4ecfc38c02
|
@ -4,7 +4,7 @@ ifeq ($(platform),)
|
|||
platform = win
|
||||
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
||||
platform = osx
|
||||
arch = intel
|
||||
arch = intel
|
||||
ifeq ($(shell uname -p),powerpc)
|
||||
arch = ppc
|
||||
endif
|
||||
|
@ -28,6 +28,11 @@ else ifeq ($(platform), osx)
|
|||
fpic := -fPIC
|
||||
SHARED := -dynamiclib
|
||||
|
||||
arch = intel
|
||||
ifeq ($(shell uname -p),powerpc)
|
||||
arch = ppc
|
||||
endif
|
||||
|
||||
ifeq ($(arch),ppc)
|
||||
CXXFLAGS += -DBLARGG_BIG_ENDIAN=1 -D__ppc__
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue