diff options
Diffstat (limited to '3rdparty/SDL2/build-scripts/g++-fat.sh')
-rw-r--r-- | 3rdparty/SDL2/build-scripts/g++-fat.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/SDL2/build-scripts/g++-fat.sh b/3rdparty/SDL2/build-scripts/g++-fat.sh index 29b04302fae..0dbe990394b 100644 --- a/3rdparty/SDL2/build-scripts/g++-fat.sh +++ b/3rdparty/SDL2/build-scripts/g++-fat.sh @@ -6,11 +6,11 @@ DEVELOPER="`xcode-select -print-path`/Platforms/MacOSX.platform/Developer" -# Intel 32-bit compiler flags (10.5 runtime compatibility) -GCC_COMPILE_X86="g++ -arch i386 -mmacosx-version-min=10.5 \ +# Intel 32-bit compiler flags (10.6 runtime compatibility) +GCC_COMPILE_X86="g++ -arch i386 -mmacosx-version-min=10.6 \ -I/usr/local/include" -GCC_LINK_X86="-mmacosx-version-min=10.5" +GCC_LINK_X86="-mmacosx-version-min=10.6" # Intel 64-bit compiler flags (10.6 runtime compatibility) GCC_COMPILE_X64="g++ -arch x86_64 -mmacosx-version-min=10.6 \ |