From 9f6150db348e3ac45e0bc51a33094c871ed24e05 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Mon, 7 Mar 2022 13:57:12 +0000 Subject: [PATCH] common.mak: D=1: use -g3 and -ggdb3 compiler options MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Level 3 includes extra information, such as macro definitions. Signed-off-by: Marc Hartmayer Acked-by: Jan Höppner Signed-off-by: Jan Höppner --- common.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.mak b/common.mak index 79f12a8d..d83134ca 100644 --- a/common.mak +++ b/common.mak @@ -96,7 +96,7 @@ ifeq ("${W}","1") DEFAULT_CFLAGS += -Wextra -Wshadow -Wundef -Wuninitialized -Wdouble-promotion -Wconversion endif ifeq ("${D}","1") - DEFAULT_CFLAGS += -Og + DEFAULT_CFLAGS += -Og -g3 -ggdb3 else DEFAULT_CFLAGS += -O3 endif