From e11887a77d81077416a2d1c5e0354916fee8c034 Mon Sep 17 00:00:00 2001 From: Haavard Skinnemoen Date: Thu, 26 Oct 2006 17:55:31 +0200 Subject: Don't pass any debug options directly to the assembler When passing the -g option to gcc, gcc automatically selects a suitable --g option to pass on to the assembler. Thus, there's no point in forcing a specific debug option on the assembler using the -Wa mechanism. Signed-off-by: Haavard Skinnemoen --- config.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config.mk') diff --git a/config.mk b/config.mk index 46e956f6d..f65d3ca48 100644 --- a/config.mk +++ b/config.mk @@ -169,7 +169,9 @@ CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs endif endif -AFLAGS_DEBUG := -Wa,-g +# $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g +# option to the assembler. +AFLAGS_DEBUG := # turn jbsr into jsr for m68k ifeq ($(ARCH),m68k) -- cgit v1.2.3