diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-27 10:52:54 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-27 10:52:54 +0000 |
commit | 69f1e2f5771de46c4237ba235225eccd772db036 (patch) | |
tree | 64a7ea47372a8285b22c747000c9563e4483bd19 /configure | |
parent | c4032c70619a59c17b8c6b45639f685d721b6512 (diff) | |
download | gcc-69f1e2f5771de46c4237ba235225eccd772db036.tar.gz |
* configure.ac: Disable libsanitizer if we're not building C++.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193842 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index d72d4f93f9c..16bbaa82bed 100755 --- a/configure +++ b/configure @@ -6437,11 +6437,11 @@ case ,${enable_languages},:${enable_objc_gc} in ;; esac -# Disable libitm if we're not building C++ +# Disable libitm and libsanitizer if we're not building C++ case ,${enable_languages}, in *,c++,*) ;; *) - noconfigdirs="$noconfigdirs target-libitm" + noconfigdirs="$noconfigdirs target-libitm target-libsanitizer" ;; esac |