Add OSX PPC ARCHFLAGS too

This commit is contained in:
twinaphex 2015-11-01 17:50:48 +01:00
parent c762a5a446
commit 672552a9f2

View File

@ -30,8 +30,12 @@ TARGET_NAME := test
LIBM = -lm
ifeq ($(ARCHFLAGS),)
ifeq ($(archs),ppc)
ARCHFLAGS = -arch ppc -arch ppc64
else
ARCHFLAGS = -arch i386 -arch x86_64
endif
endif
ifeq ($(platform), osx)
ifndef ($(NOUNIVERSAL))