From: Daniel Karbach Date: Mon, 31 Aug 2015 11:49:38 +0000 (+0200) Subject: add minimal debug symbols in release build X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=f27b8bb27fa87487bb5d29a1456e610255287b04;p=blank.git add minimal debug symbols in release build this should make tracing core dumps much easier and they can always be stripped anyway --- diff --git a/Makefile b/Makefile index 36fd021..7bafccd 100644 --- 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