1.1 --- a/build-scripts/g++-fat.sh Wed Mar 30 11:23:28 2016 -0400
1.2 +++ b/build-scripts/g++-fat.sh Wed Mar 30 13:30:19 2016 -0400
1.3 @@ -6,17 +6,17 @@
1.4
1.5 DEVELOPER="`xcode-select -print-path`/Platforms/MacOSX.platform/Developer"
1.6
1.7 -# Intel 32-bit compiler flags (10.6 runtime compatibility)
1.8 -GCC_COMPILE_X86="g++ -arch i386 -mmacosx-version-min=10.5 \
1.9 +# Intel 32-bit compiler flags (10.7 runtime compatibility)
1.10 +GCC_COMPILE_X86="g++ -arch i386 -mmacosx-version-min=10.7 \
1.11 -I/usr/local/include"
1.12
1.13 -GCC_LINK_X86="-mmacosx-version-min=10.5"
1.14 +GCC_LINK_X86="-mmacosx-version-min=10.7"
1.15
1.16 -# Intel 64-bit compiler flags (10.6 runtime compatibility)
1.17 -GCC_COMPILE_X64="g++ -arch x86_64 -mmacosx-version-min=10.6 \
1.18 +# Intel 64-bit compiler flags (10.7 runtime compatibility)
1.19 +GCC_COMPILE_X64="g++ -arch x86_64 -mmacosx-version-min=10.7 \
1.20 -I/usr/local/include"
1.21
1.22 -GCC_LINK_X64="-mmacosx-version-min=10.6"
1.23 +GCC_LINK_X64="-mmacosx-version-min=10.7"
1.24
1.25 # Output both PowerPC and Intel object files
1.26 args="$*"