diff options
author | Mike Stump <mrs@apple.com> | 2013-07-10 20:55:59 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2013-07-10 20:55:59 +0000 |
commit | 79215ca75473b35293c88a17f2b48b58fb8712ae (patch) | |
tree | 6ffb6b45156e70f1c251257affba78a3435f15a6 /configure | |
parent | 94e36acc3c80011966791d3773596e5f14264eab (diff) | |
download | fsf-binutils-gdb-79215ca75473b35293c88a17f2b48b58fb8712ae.zip fsf-binutils-gdb-79215ca75473b35293c88a17f2b48b58fb8712ae.tar.gz fsf-binutils-gdb-79215ca75473b35293c88a17f2b48b58fb8712ae.tar.bz2 |
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.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -7420,6 +7420,13 @@ 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}" |