You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2017/09/07 22:04:08 UTC

qpid-proton git commit: PROTON-1540: Don't disable bindings with sanitizers

Repository: qpid-proton
Updated Branches:
  refs/heads/master 29272ca39 -> 742ccf9d9


PROTON-1540: Don't disable bindings with sanitizers

Some of the bindings (GO, RUBY) currently don't work with sanitizers on,
but don't forcibly disable them - let the user do it.

Going forward we can probably fix the link problems and enable sanitizers with
these bindings.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/742ccf9d
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/742ccf9d
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/742ccf9d

Branch: refs/heads/master
Commit: 742ccf9d9034ed0d2be1c459758cf2e93aae08f6
Parents: 29272ca
Author: Alan Conway <ac...@redhat.com>
Authored: Thu Sep 7 17:57:08 2017 -0400
Committer: Alan Conway <ac...@redhat.com>
Committed: Thu Sep 7 17:57:08 2017 -0400

----------------------------------------------------------------------
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/742ccf9d/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 376c5d3..b87f232 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -174,7 +174,7 @@ endif (ENABLE_VALGRIND)
 option(ENABLE_SANITIZERS "Compile with sanitizers (ASan, UBSan, TSan); incompatible with Valgrind" OFF)
 option(ENABLE_TSAN "Compile with Thread Sanitizer (TSan); incompatible with Valgrind" OFF)
 if (ENABLE_SANITIZERS OR ENABLE_TSAN)
-  set(DISABLE ENABLE_VALGRIND ENABLE_UNDEFINED_ERROR BUILD_GO BUILD_RUBY BUILD_PYTHON)
+  set(DISABLE ENABLE_VALGRIND ENABLE_UNDEFINED_ERROR)
   message(STATUS "Building with sanitizers; disables ${DISABLE}")
   foreach(d ${DISABLE})
     set(${d} OFF CACHE BOOL "Disabled to run sanitizers" FORCE)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org