Commit d6531d83 by Dodji Seketeli Committed by Dodji Seketeli

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
parent e7fae550
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
......
......@@ -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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment