diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-07-10 22:48:04 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-07-10 22:48:04 +0200 |
commit | 429aceec8f6ab4c13e0e7197c013cccd22f27a74 (patch) | |
tree | a792b6f2ad59092349c99f80fbac49cccc862ad4 /Makefile | |
parent | ea8cba7f586f0da270e29eb2cc10d32d406d0d88 (diff) |
do not omit frame pointer in debug mode
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |