diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-04-26 12:00:00 +0200 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2018-04-26 12:00:00 +0200 |
commit | cdec2cbbdc5a8755e6eb2e7ac0d6913285a59cf5 (patch) | |
tree | 67f2f445b240a20b7508346cf3239f810046efaa /tools/depends/target/config.site.in | |
parent | d4678b9c520565a61632f4a901887aba663cfa00 (diff) |
[depends][cleanup] remove handling for unsupported Xcode versions
Diffstat (limited to 'tools/depends/target/config.site.in')
-rw-r--r-- | tools/depends/target/config.site.in | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/tools/depends/target/config.site.in b/tools/depends/target/config.site.in index 3845b59bf3..74fc40df34 100644 --- a/tools/depends/target/config.site.in +++ b/tools/depends/target/config.site.in @@ -155,26 +155,11 @@ if test "@platform_os@" = "ios"; then ac_cv_func_clock_gettime=no ac_cv_func_getentropy=no - # tweaks for libffi (ios must use llvm-gcc-4.2) + # tweaks for libffi if test "${PACKAGE_NAME}" = "libffi" ; then - case "@use_xcode@" in - 4.* | 4.*.*) - export CC="@use_toolchain@/usr/bin/llvm-gcc-4.2" - export CPP="@use_toolchain@/usr/bin/llvm-gcc-4.2 -E" - ;; - *) - export CC="@use_toolchain@/usr/bin/clang" - export CPP="@use_toolchain@/usr/bin/clang -E" - ;; - esac - if test "@use_cpu@" = "arm64"; then - host=aarch64-apple-darwin host_alias=aarch64-apple-darwin - fi - - unset AS - unset CCAS + fi fi # tweaks for flac |