diff options
author | dodji <dodji@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-13 15:12:12 +0000 |
---|---|---|
committer | dodji <dodji@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-13 15:12:12 +0000 |
commit | 4afab99bf0fe2d6905a9fa9d6ab886ca102312df (patch) | |
tree | 8c8faf5d525d839d81e4ba252821f123a5bdc75d /configure.ac | |
parent | c36ee471e293cf0c08bf73d1071f906d756daf0b (diff) | |
download | gcc-4afab99bf0fe2d6905a9fa9d6ab886ca102312df.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193478 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 1d958b4c203..6c1b008b616 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 |