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
This commit is contained in:
Dodji Seketeli 2012-11-13 15:12:12 +00:00 committed by Dodji Seketeli
parent e7fae5500c
commit d6531d8364
3 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2012-11-13 Dodji Seketeli <dodji@redhat.com>
* configure.ac: Enable libsanitizer just on x86 linux for now.
* configure: Re-generate.
2012-11-13 David Edelsohn <dje.gcc@gmail.com>
* configure.ac: Disable libsanitizer on AIX. Merge libquadmath

7
configure vendored
View File

@ -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

View File

@ -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