From 3be0766f278a882593d9281e283324d7a0ca7594 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Mon, 24 Feb 2020 13:40:38 -0400 Subject: [PATCH] Bump XSAN build to bionic and add status message --- .travis.yml | 1 - CMakeLists.txt | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1a9cb7b4b..d8d737886 100644 --- a/.travis.yml +++ b/.travis.yml @@ -98,7 +98,6 @@ matrix: # env: BUILD_TYPE=Debug XSAN=undefined PATH="/usr/local/opt/ccache/libexec:$PATH" CC=/usr/local/opt/llvm/bin/clang CXX=/usr/local/opt/llvm/bin/clang++ - name: "memory sanitizer" os: linux - dist: xenial compiler: clang env: BUILD_TYPE=Debug XSAN=memory addons: *core_apt_addons diff --git a/CMakeLists.txt b/CMakeLists.txt index a38c636cf..8d850c868 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,6 +105,7 @@ endif() if(XSAN) set(DEBUG_FLAGS ${DEBUG_FLAGS} "-fsanitize=${XSAN}" -fno-omit-frame-pointer) set(OPTIMIZE_FLAGS "-O0") + message(STATUS "Doing a ${XSAN} sanitizer build") endif(XSAN) if(CMAKE_BUILD_TYPE MATCHES "[Dd][Ee][Bb][Uu][Gg]")