aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@redhat.com>2012-11-13 15:12:12 +0000
committerDodji Seketeli <dodji@gcc.gnu.org>2012-11-13 16:12:12 +0100
commitd6531d8364a6dc74c61462743c52dc6275d54beb (patch)
tree8c8faf5d525d839d81e4ba252821f123a5bdc75d /configure
parente7fae5500c8ebf2881ee028f0406148aea3dd7a0 (diff)
downloadgcc-d6531d8364a6dc74c61462743c52dc6275d54beb.zip
gcc-d6531d8364a6dc74c61462743c52dc6275d54beb.tar.gz
gcc-d6531d8364a6dc74c61462743c52dc6275d54beb.tar.bz2
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 3 insertions, 4 deletions
diff --git a/configure b/configure
index c387e92..39df09f 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