changeset 163:4b846416777a

* Don't bother building universal binaries by default
author cannam
date Wed, 09 Jul 2008 09:55:32 +0000
parents 8c8854a78dcd
children 0b9cdcc900ad
files Makefile.osx
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.osx	Wed Jul 09 09:36:39 2008 +0000
+++ b/Makefile.osx	Wed Jul 09 09:55:32 2008 +0000
@@ -44,7 +44,7 @@
 
 # Compile flags
 #
-CXXFLAGS	:= $(CXXFLAGS) -O2 -Wall -I. -fPIC -arch i386 -arch ppc
+CXXFLAGS	:= $(CXXFLAGS) -O2 -Wall -I. -fPIC 
 
 # ar, ranlib
 #
@@ -64,11 +64,11 @@
 
 # Libraries required for the host.
 #
-HOST_LIBS	= -arch i386 -arch ppc $(SDKDIR)/libvamp-hostsdk.a -lsndfile -ldl
+HOST_LIBS	= $(SDKDIR)/libvamp-hostsdk.a -lsndfile -ldl
 
 # Flags required to tell the compiler to create a dynamically loadable object
 #
-DYNAMIC_LDFLAGS		= -dynamiclib -arch i386 -arch ppc
+DYNAMIC_LDFLAGS		= -dynamiclib 
 PLUGIN_LDFLAGS		= $(DYNAMIC_LDFLAGS) -install_name vamp-example-plugins.dylib
 SDK_DYNAMIC_LDFLAGS	= $(DYNAMIC_LDFLAGS) -install_name libvamp-sdk.dylib
 HOSTSDK_DYNAMIC_LDFLAGS	= $(DYNAMIC_LDFLAGS) -install_name libvamp-hostsdk.dylib