]> git.localhorst.tv Git - blank.git/commitdiff
add minimal debug symbols in release build
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 31 Aug 2015 11:49:38 +0000 (13:49 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 31 Aug 2015 11:49:38 +0000 (13:49 +0200)
this should make tracing core dumps much easier
and they can always be stripped anyway

Makefile

index 36fd0214bb30a3be2a445a74d492fcff38864711..7bafccd6a6e74e2c436e4b0f218736d30237219b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ LDXXFLAGS += $(PKGLIBS)
 
 DEBUG_FLAGS = -g3 -O0
 PROFILE_FLAGS = -DNDEBUG -O1 -g3
-RELEASE_FLAGS = -DNDEBUG -O2
+RELEASE_FLAGS = -DNDEBUG -O2 -g1
 TEST_FLAGS = -g -O2 -I./src $(TESTFLAGS)
 
 SOURCE_DIR := src