diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-02-03 08:00:00 +0100 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2018-02-03 08:00:00 +0100 |
commit | 96982778bb1667afe3b05de9c3b1cdef27e55ebf (patch) | |
tree | e00946988ec7a0736c05c603b00727605f35d434 /tools | |
parent | 4020c8649d335d92173dc3232377bed6120d4a1f (diff) |
[osx] deployment target is 10.8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/configure.ac | 7 | ||||
-rw-r--r-- | tools/depends/target/config-binaddons.site.in | 2 | ||||
-rw-r--r-- | tools/depends/target/config.site.in | 2 |
3 files changed, 2 insertions, 9 deletions
diff --git a/tools/depends/configure.ac b/tools/depends/configure.ac index 6e84d644ca..9ef7ef67f2 100644 --- a/tools/depends/configure.ac +++ b/tools/depends/configure.ac @@ -315,10 +315,6 @@ case $host in platform_cxxflags="-no_compact_linkedit -no-cpp-precomp" case $use_xcode in - 3.*.*) - platform_cc=gcc-4.2 - platform_cxx=g++-4.2 - ;; 4.* | 4.*.*) platform_cc=llvm-gcc-4.2 platform_cxx=llvm-g++-4.2 @@ -358,9 +354,6 @@ case $host in # now that we know which sdk, error check sdk_name case $use_sdk in - 10.5);; - 10.6);; - 10.7);; 10.8);; 10.9);; 10.10);; diff --git a/tools/depends/target/config-binaddons.site.in b/tools/depends/target/config-binaddons.site.in index 7b9676b92f..94bdb73733 100644 --- a/tools/depends/target/config-binaddons.site.in +++ b/tools/depends/target/config-binaddons.site.in @@ -137,7 +137,7 @@ if test "@platform_os@" = "ios"; then # tweaks for libffi (ios must use llvm-gcc-4.2) if test "${PACKAGE_NAME}" = "libffi" ; then case "@use_xcode@" in - 3.*.* | 4.* | 4.*.*) + 4.* | 4.*.*) export CC="@use_toolchain@/usr/bin/llvm-gcc-4.2" export CPP="@use_toolchain@/usr/bin/llvm-gcc-4.2 -E" ;; diff --git a/tools/depends/target/config.site.in b/tools/depends/target/config.site.in index d3a2e2e3cc..28333d3e0a 100644 --- a/tools/depends/target/config.site.in +++ b/tools/depends/target/config.site.in @@ -159,7 +159,7 @@ if test "@platform_os@" = "ios"; then # tweaks for libffi (ios must use llvm-gcc-4.2) if test "${PACKAGE_NAME}" = "libffi" ; then case "@use_xcode@" in - 3.*.* | 4.* | 4.*.*) + 4.* | 4.*.*) export CC="@use_toolchain@/usr/bin/llvm-gcc-4.2" export CPP="@use_toolchain@/usr/bin/llvm-gcc-4.2 -E" ;; |