From ddcf3312058e791f208ec28c98a412981fb6e315 Mon Sep 17 00:00:00 2001 From: NRK Date: Sun, 14 May 2023 22:13:44 +0600 Subject: [PATCH] Makefile: use -g3 for debug builds -g3 builds additional information such as macro definition and so on. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b6930330..c39703de 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ endif ifeq ($(strip $(O_DEBUG)),1) CPPFLAGS += -DDEBUG - CFLAGS += -g + CFLAGS += -g3 endif ifeq ($(strip $(O_NORL)),1)