summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJan-Benedict Glaw <jbglaw@lug-owl.de>2012-11-28 11:43:47 +0000
committerJan-Benedict Glaw <jbglaw@lug-owl.de>2012-11-28 11:43:47 +0000
commit61c3ddd8447153f63481b517372860d905224ae5 (patch)
treee4e35fc9993fc4a9f0e24056734e8bb9e55f3385 /configure
parent4fd7fc8edc02d8183265582e8b8e45a51f6b5abf (diff)
downloadgdb-61c3ddd8447153f63481b517372860d905224ae5.tar.gz
Disable libsanitizer for non-C++ builds.
* configure.ac (noconfigdirs): Merge from GCC. * configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
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