From: Diane Trout Date: Fri, 11 Apr 2008 04:06:59 +0000 (-0700) Subject: to make it easier to build under os x 10.5, stop making the ppc/i386 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=mussa.git;a=commitdiff_plain;h=38969cafcdba2b1922452e3255c91dedd178c71c to make it easier to build under os x 10.5, stop making the ppc/i386 universal build --- diff --git a/makelib/Platform.cmake b/makelib/Platform.cmake index b5b2a80..4506c5f 100644 --- a/makelib/Platform.cmake +++ b/makelib/Platform.cmake @@ -20,9 +20,9 @@ MACRO(GET_MUSSA_COMPILE_FLAGS) SET(${return} "") # this define is needed for linking against the shared # library version of the boost unit test framework version 1.34.1 - ADD_DEFINITIONS("-DBOOST_TEST_DYN_LINK") + # ADD_DEFINITIONS("-DBOOST_TEST_DYN_LINK") IF(APPLE) - ADD_DEFINITIONS("-isysroot /Developer/SDKS/MacOSX10.4u.sdk -arch ppc -arch i386 -I/usr/local/include") + #ADD_DEFINITIONS("-isysroot /Developer/SDKS/MacOSX10.4u.sdk -arch ppc -arch i386 -I/usr/local/include") ENDIF(APPLE) IF (UNIX AND NOT WIN32) IF (CMAKE_SIZEOF_VOID_P MATCHES "8") @@ -36,7 +36,7 @@ MACRO(GET_MUSSA_LINK_FLAGS return) IF(APPLE) SET(${return} ${${return}} - "-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386" + #"-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386" ) ENDIF(APPLE) ENDMACRO(GET_MUSSA_LINK_FLAGS)