Commit 592d2604 authored by Sam Lantinga's avatar Sam Lantinga

Trying to fix fatbuild.sh on intel

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401676
parent 5deaddd7
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
# Build a fat binary on Mac OS X, thanks Ryan! # Build a fat binary on Mac OS X, thanks Ryan!
# PowerPC compiler flags (10.2 runtime compatibility) # PowerPC compiler flags (10.2 runtime compatibility)
CC_PPC="gcc-3.3" CC_PPC="gcc-3.3 -arch ppc"
CFLAGS_PPC="-arch ppc" CFLAGS_PPC=""
CPPFLAGS_PPC="-DMAC_OS_X_VERSION_MIN_REQUIRED=1020 \ CPPFLAGS_PPC="-DMAC_OS_X_VERSION_MIN_REQUIRED=1020 \
-nostdinc \ -nostdinc \
-F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \ -F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \
...@@ -18,8 +18,8 @@ LFLAGS_PPC="-arch ppc \ ...@@ -18,8 +18,8 @@ LFLAGS_PPC="-arch ppc \
-Wl,-syslibroot,/Developer/SDKs/MacOSX10.2.8.sdk" -Wl,-syslibroot,/Developer/SDKs/MacOSX10.2.8.sdk"
# Intel compiler flags (10.4 runtime compatibility) # Intel compiler flags (10.4 runtime compatibility)
CC_X86="gcc-4.0" CC_X86="gcc-4.0 -arch i386"
CFLAGS_X86="-arch i386 -mmacosx-version-min=10.4" CFLAGS_X86="-mmacosx-version-min=10.4"
CPPFLAGS_X86="-DMAC_OS_X_VERSION_MIN_REQUIRED=1040 \ CPPFLAGS_X86="-DMAC_OS_X_VERSION_MIN_REQUIRED=1040 \
-nostdinc \ -nostdinc \
-F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks \ -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment