From: Wolfgang Denk <wd@pollux.denx.de>
Date: Tue, 24 Oct 2006 11:57:33 +0000 (+0200)
Subject: Use -g instead of -gstabs in AFLAGS_DEBUG
X-Git-Tag: v2025.01-rc5-pxa1908~22941^2~2^2^2~5
X-Git-Url: http://git.dujemihanovic.xyz/img/login.html?a=commitdiff_plain;h=2da2d9a4766063b9848f3a35ad6025499cf87265;p=u-boot.git

Use -g instead of -gstabs in AFLAGS_DEBUG
Patch by Haavard Skinnemoen, 30 Aug 2006

In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
matter what the target's preferred debugging format is. This patch
simply replaces -gstabs with -g, so that the default debugging format
for the architecture is used.
---

diff --git a/config.mk b/config.mk
index d32f51e90b..46e956f6d3 100644
--- a/config.mk
+++ b/config.mk
@@ -169,7 +169,7 @@ CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs
 endif
 endif
 
-AFLAGS_DEBUG := -Wa,-gstabs
+AFLAGS_DEBUG := -Wa,-g
 
 # turn jbsr into jsr for m68k
 ifeq ($(ARCH),m68k)