From f27b8bb27fa87487bb5d29a1456e610255287b04 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Mon, 31 Aug 2015 13:49:38 +0200 Subject: [PATCH] add minimal debug symbols in release build this should make tracing core dumps much easier and they can always be stripped anyway --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2