Commit 859b58d1 authored by Sam Lantinga's avatar Sam Lantinga

Whoops, need the actual flags here

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401646
parent 4b9dfeba
...@@ -3,8 +3,7 @@ ...@@ -3,8 +3,7 @@
# 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)
CFLAGS_PPC=-DBUILD_PPC CFLAGS_PPC="-arch ppc \
xCFLAGS_PPC="-arch ppc \
-F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \ -F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \
-I/Developer/SDKs/MacOSX10.2.8.sdk/Developer/Headers/FlatCarbon \ -I/Developer/SDKs/MacOSX10.2.8.sdk/Developer/Headers/FlatCarbon \
-DMAC_OS_X_VERSION_MIN_REQUIRED=1020 \ -DMAC_OS_X_VERSION_MIN_REQUIRED=1020 \
...@@ -14,18 +13,17 @@ xCFLAGS_PPC="-arch ppc \ ...@@ -14,18 +13,17 @@ xCFLAGS_PPC="-arch ppc \
-isystem /Developer/SDKs/MacOSX10.2.8.sdk/usr/include" -isystem /Developer/SDKs/MacOSX10.2.8.sdk/usr/include"
# PowerPC linker flags # PowerPC linker flags
xLFLAGS_PPC="-arch ppc -mmacosx-version-min=10.2 \ LFLAGS_PPC="-arch ppc -mmacosx-version-min=10.2 \
-L/Developer/SDKs/MacOSX10.2.8.sdk/usr/lib/gcc/darwin/3.3 \ -L/Developer/SDKs/MacOSX10.2.8.sdk/usr/lib/gcc/darwin/3.3 \
-F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \ -F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \
-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)
CFLAGS_X86=-DBUILD_X86 CFLAGS_X86="-arch i386 -mmacosx-version-min=10.4 \
xCFLAGS_X86="-arch i386 -mmacosx-version-min=10.4 \
-DMAC_OS_X_VERSION_MIN_REQUIRED=1040 -isysroot /Developer/SDKs/MacOSX10.4u.sdk" -DMAC_OS_X_VERSION_MIN_REQUIRED=1040 -isysroot /Developer/SDKs/MacOSX10.4u.sdk"
# Intel linker flags # Intel linker flags
xLFLAGS_X86="-arch i386 -mmacosx-version-min=10.4 \ LFLAGS_X86="-arch i386 -mmacosx-version-min=10.4 \
-L/Developer/SDKs/MacOSX10.4u.sdk/usr/lib/gcc/i686-apple-darwin8/4.0.0 \ -L/Developer/SDKs/MacOSX10.4u.sdk/usr/lib/gcc/i686-apple-darwin8/4.0.0 \
-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk" -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk"
......
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