From e306fe0fecce7b6a275eff362bcd6ae3fdfff01c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 25 Jun 2014 12:42:46 +0200 Subject: [PATCH] Update readme on cmake build types --- README.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 729597a9f..8dd823c9c 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ In order to build the source using CMake, just enter at the command line:: make -There are 3 different active build modes specified within the CMake buildsystem: +There are 5 different active build modes specified within the CMake buildsystem: - Release. This generates the default code without any unnecessary information in the binary files. @@ -47,6 +47,10 @@ There are 3 different active build modes specified within the CMake buildsystem: This generates debug information and disables optimization of the code. - Coverage. This generates code coverage information in addition to debug information. +- ASan. + This instruments the code with AddressSanitizer to check for memory errors. +- Check. + This activates more compiler warnings and treats them as errors. Switching build modes in CMake is simple. For debug mode, enter at the command line: