From: Dodji Seketeli Date: Tue, 13 Nov 2012 15:12:12 +0000 (+0000) Subject: Enable libsanitizer just on x86 linux for now X-Git-Tag: releases/gcc-4.8.0~2038 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d6531d8364a6dc74c61462743c52dc6275d54beb;p=thirdparty%2Fgcc.git Enable libsanitizer just on x86 linux for now This patch builds libsanitizer only on x86_64 and i?86 linux targets for now. I guess The build can be enabled on other targets when they are ready. ChangeLog: * configure.ac: Enable libsanitizer just on x86 linux for now. * configure: Re-generate. From-SVN: r193478 --- diff --git a/ChangeLog b/ChangeLog index 5de77b457147..bb42398dedeb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-11-13 Dodji Seketeli + + * configure.ac: Enable libsanitizer just on x86 linux for now. + * configure: Re-generate. + 2012-11-13 David Edelsohn * configure.ac: Disable libsanitizer on AIX. Merge libquadmath diff --git a/configure b/configure index c387e9258d42..39df09f3d8f9 100755 --- a/configure +++ b/configure @@ -3208,12 +3208,11 @@ case "${target}" in ;; esac -# Disable libsanitizer for some systems. +# Disable libsanitizer on all systems but x86 linux for now. case "${target}" in - cris-*-* | crisv32-*-* | mmix-*-*) - noconfigdirs="$noconfigdirs target-libsanitizer" + x86_64-*-linux-* | i?86-*-linux-*) ;; - powerpc-*-aix* | rs6000-*-aix*) + *) noconfigdirs="$noconfigdirs target-libsanitizer" ;; esac diff --git a/configure.ac b/configure.ac index 1d958b4c2034..6c1b008b6169 100644 --- a/configure.ac +++ b/configure.ac @@ -550,12 +550,11 @@ case "${target}" in ;; esac -# Disable libsanitizer for some systems. +# Disable libsanitizer on all systems but x86 linux for now. case "${target}" in - cris-*-* | crisv32-*-* | mmix-*-*) - noconfigdirs="$noconfigdirs target-libsanitizer" + x86_64-*-linux-* | i?86-*-linux-*) ;; - powerpc-*-aix* | rs6000-*-aix*) + *) noconfigdirs="$noconfigdirs target-libsanitizer" ;; esac