diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-11-24 15:37:48 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-11-28 01:18:21 +0100 |
commit | 31e18e49b699f606a8aeb1f529642a004781e704 (patch) | |
tree | 4e04be7b7f9be0ffe1c27673f244894f2ebf1ccd | |
parent | fba01f46468050d4f3b8eb35373ed49a3584868e (diff) | |
download | biboumi-31e18e49b699f606a8aeb1f529642a004781e704.tar.gz biboumi-31e18e49b699f606a8aeb1f529642a004781e704.tar.bz2 biboumi-31e18e49b699f606a8aeb1f529642a004781e704.tar.xz biboumi-31e18e49b699f606a8aeb1f529642a004781e704.zip |
fsanitize=address requires libasan, that’s a useless dependency.
Also we cannot use both this feature and valgrind at the same time.
So, I’ll just specify this flag myself when I need it, this doesn’t
need to be there by default
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c01ee3..daa6cf6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(${PROJECT_NAME}_VERSION_MAJOR 0) set(${PROJECT_NAME}_VERSION_MINOR 1) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -pedantic -Wall -Wextra") -set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Og -fsanitize=address") +set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Og") # ## Look for external libraries |