diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-08-14 14:16:47 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-08-14 14:16:47 +0200 |
commit | d8a3693cd0a7b39ac2b617907038197912f77b53 (patch) | |
tree | 684b63bc1b341e63a6cdff98a6e57fb9c98f2f11 /Makefile | |
parent | 52945ff903800dd7c920cc2e015faf95f41d43a4 (diff) |
Makefile: ENABLE_DEBUG disables function inlining
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) -PROJECT_CFLAGS += -O0 -g3 -fno-omit-frame-pointer +PROJECT_CFLAGS += -O0 -g3 -fno-omit-frame-pointer -fno-inline else ENABLE_DEBUG = no endif |