summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/TinyCC-C.cmake
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2012-08-16 02:00:45 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2012-08-16 02:00:45 (GMT)
commit0ddfc51f6a68c61d84b5b4818b32ecbf755a949a (patch)
treebde52394835d76b630cc8b751c16f1ba572c2bce /Modules/Compiler/TinyCC-C.cmake
parentaddefc2ae3b33a75a7152730146b46b319118a24 (diff)
downloadCMake-0ddfc51f6a68c61d84b5b4818b32ecbf755a949a.zip
CMake-0ddfc51f6a68c61d84b5b4818b32ecbf755a949a.tar.gz
CMake-0ddfc51f6a68c61d84b5b4818b32ecbf755a949a.tar.bz2
Add -DNDEBUG to RelWithDebInfo flags where where Release flags had it.
Previously, it was inconsistent in that some platforms/compilers had this flag for the RelWithDebInfo configuration and some didn't. This fixes issue #11366.
Diffstat (limited to 'Modules/Compiler/TinyCC-C.cmake')
-rw-r--r--Modules/Compiler/TinyCC-C.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Compiler/TinyCC-C.cmake b/Modules/Compiler/TinyCC-C.cmake
index 178dd0c..f7937ac 100644
--- a/Modules/Compiler/TinyCC-C.cmake
+++ b/Modules/Compiler/TinyCC-C.cmake
@@ -5,4 +5,4 @@ set (CMAKE_C_FLAGS_INIT "")
set (CMAKE_C_FLAGS_DEBUG_INIT "-g")
set (CMAKE_C_FLAGS_MINSIZEREL_INIT "-DNDEBUG")
set (CMAKE_C_FLAGS_RELEASE_INIT "-DNDEBUG")
-set (CMAKE_C_FLAGS_RELWITHDEBINFO_INIT "-g")
+set (CMAKE_C_FLAGS_RELWITHDEBINFO_INIT "-g -DNDEBUG")