diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-13 14:19:14 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-13 14:19:14 +0000 |
commit | c36ee471e293cf0c08bf73d1071f906d756daf0b (patch) | |
tree | 8d97fd357f0948d58c4c280f9038ea152732a2eb /configure.ac | |
parent | aa06c51c6b3ae85533c8c36031c0694496dd9372 (diff) | |
download | gcc-c36ee471e293cf0c08bf73d1071f906d756daf0b.tar.gz |
* configure.ac: Disable libsanitizer on AIX. Merge libquadmath
sections.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193477 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index c66aa748b44..1d958b4c203 100644 --- a/configure.ac +++ b/configure.ac @@ -540,6 +540,9 @@ fi # Disable libquadmath for some systems. case "${target}" in + avr-*-*) + noconfigdirs="$noconfigdirs target-libquadmath" + ;; # libquadmath is unused on AIX and libquadmath build process use of # LD_LIBRARY_PATH can break AIX bootstrap. powerpc-*-aix* | rs6000-*-aix*) @@ -552,6 +555,9 @@ case "${target}" in cris-*-* | crisv32-*-* | mmix-*-*) noconfigdirs="$noconfigdirs target-libsanitizer" ;; + powerpc-*-aix* | rs6000-*-aix*) + noconfigdirs="$noconfigdirs target-libsanitizer" + ;; esac # Disable libssp for some systems. @@ -571,13 +577,6 @@ case "${target}" in ;; esac -# Disable libquadmath for some systems. -case "${target}" in - avr-*-*) - noconfigdirs="$noconfigdirs target-libquadmath" - ;; -esac - # Disable libstdc++-v3 for some systems. # Allow user to override this if they pass --enable-libstdc++-v3 if test "${ENABLE_LIBSTDCXX}" = "default" ; then |