diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-24 13:57:33 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-24 13:57:33 +0200 |
commit | 2da2d9a4766063b9848f3a35ad6025499cf87265 (patch) | |
tree | d67008a137c040c4ebdc63313ae6e445853b9aeb /config.mk | |
parent | 965829872169c2996023840d98e1d85ad148d629 (diff) |
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.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk index d32f51e90b0..46e956f6d33 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) |