Makefile: use -g3 for debug builds

-g3 builds additional information such as macro definition and so on.
This commit is contained in:
NRK 2023-05-14 22:13:44 +06:00
parent fe96bd6bc7
commit ddcf331205
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ endif
ifeq ($(strip $(O_DEBUG)),1)
CPPFLAGS += -DDEBUG
CFLAGS += -g
CFLAGS += -g3
endif
ifeq ($(strip $(O_NORL)),1)