diff options
author | Jan-Benedict Glaw <jbglaw@lug-owl.de> | 2012-11-28 11:43:47 +0000 |
---|---|---|
committer | Jan-Benedict Glaw <jbglaw@lug-owl.de> | 2012-11-28 11:43:47 +0000 |
commit | c23b5043ce222d89275b7fa1608f9bf7e0faa065 (patch) | |
tree | e3760bb5604fd777d8c8da095f4408627dba9a01 | |
parent | 2bb4ab05672d0b0b3c764b085ec44344a6e38f92 (diff) | |
download | gdb-c23b5043ce222d89275b7fa1608f9bf7e0faa065.zip gdb-c23b5043ce222d89275b7fa1608f9bf7e0faa065.tar.gz gdb-c23b5043ce222d89275b7fa1608f9bf7e0faa065.tar.bz2 |
Disable libsanitizer for non-C++ builds.
* configure.ac (noconfigdirs): Merge from GCC.
* configure: Regenerate.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de> + + * configure.ac (noconfigdirs): Merge from GCC. + * configure: Regenerate. + 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de> * config.sub (arm): Merge from upstream: Handle armv[6-8] targets. @@ -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 diff --git a/configure.ac b/configure.ac index 24ea7e5..cd6721e 100644 --- a/configure.ac +++ b/configure.ac @@ -2008,11 +2008,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 |