aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-07-10 22:48:04 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-07-10 22:48:04 +0200
commit429aceec8f6ab4c13e0e7197c013cccd22f27a74 (patch)
treea792b6f2ad59092349c99f80fbac49cccc862ad4 /Makefile
parentea8cba7f586f0da270e29eb2cc10d32d406d0d88 (diff)
do not omit frame pointer in debug mode
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 920f345eb..3482708ac 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ LIBS += -lndpi
endif
ifeq ($(ENABLE_DEBUG),yes)
-CFLAGS += -O0 -g3
+CFLAGS += -O0 -g3 -fno-omit-frame-pointer
else
ENABLE_DEBUG = no
endif