diff options
author | Mike Stump <mrs@gcc.gnu.org> | 2013-08-05 15:59:34 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2013-08-05 15:59:34 +0000 |
commit | 4b7dff77bfb5e2844b4d185217b27a1973670395 (patch) | |
tree | a3e73891349d8a8915d3bbba4f9ca3f7b8869c81 | |
parent | 51a5c0c2b26ff09ceba355b45dedde5bac1b0560 (diff) | |
download | gcc-4b7dff77bfb5e2844b4d185217b27a1973670395.zip gcc-4b7dff77bfb5e2844b4d185217b27a1973670395.tar.gz gcc-4b7dff77bfb5e2844b4d185217b27a1973670395.tar.bz2 |
re PR target/57792 (toplevel configure should enable "--with-sysroot="`xcrun --show-sdk-path`"" for darwin13 and later)
Remove:
2013-07-10 Jack Howarth <howarth@bromo.med.uc.edu>
PR target/57792
* configure.ac: Use --with-sysroot=\"`xcrun --show-sdk-path`\" on darwin13 and later.
* configure: Regenerated.
From-SVN: r201494
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 7 | ||||
-rw-r--r-- | configure.ac | 7 |
3 files changed, 0 insertions, 20 deletions
@@ -17,12 +17,6 @@ * configure.ac: Sync from binutils. * configure: Regenerate. -2013-07-10 Jack Howarth <howarth@bromo.med.uc.edu> - - PR target/57792 - * configure.ac: Use --with-sysroot=\"`xcrun --show-sdk-path`\" on darwin13 and later. - * configure: Regenerated. - 2013-06-14 Vidya Praveen <vidyapraveen@arm.com> * MAINTAINERS (Write After Approval): Add myself. @@ -7420,13 +7420,6 @@ if test x${is_cross_compiler} = xyes ; then target_configargs="--with-cross-host=${host_noncanonical} ${target_configargs}" fi -# Pass --with-sysroot on darwin without SDK in / -case "${target}" in - x86_64-*-darwin1[3-9]*) - host_configargs="--with-sysroot=\"`xcrun --show-sdk-path`\" ${host_configargs}" - ;; -esac - # Default to --enable-multilib. if test x${enable_multilib} = x ; then target_configargs="--enable-multilib ${target_configargs}" diff --git a/configure.ac b/configure.ac index d4dc10b..226239b 100644 --- a/configure.ac +++ b/configure.ac @@ -2854,13 +2854,6 @@ if test x${is_cross_compiler} = xyes ; then target_configargs="--with-cross-host=${host_noncanonical} ${target_configargs}" fi -# Pass --with-sysroot on darwin without SDK in / -case "${target}" in - x86_64-*-darwin1[[3-9]]*) - host_configargs="--with-sysroot=\"`xcrun --show-sdk-path`\" ${host_configargs}" - ;; -esac - # Default to --enable-multilib. if test x${enable_multilib} = x ; then target_configargs="--enable-multilib ${target_configargs}" |