From: Marian Balakowicz Date: Wed, 17 May 2006 10:18:48 +0000 (+0200) Subject: Fix gcc 3.4.x AFLAGS setting for m68k platform. X-Git-Tag: LABEL_2006_05_19_1133~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b62fa913d47e1dab7cbb055dae627c434ea57255;p=u-boot Fix gcc 3.4.x AFLAGS setting for m68k platform. --- diff --git a/CHANGELOG b/CHANGELOG index 4272844d47..af6e115dcf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,8 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Fix gcc 3.4.x AFLAGS setting for m68k platform. + * Enable autoboot for M5271EVB board. * Changed default ramdisk addr in yosemite/yellowstone ports diff --git a/config.mk b/config.mk index b1e1d8f149..c7b841da59 100644 --- a/config.mk +++ b/config.mk @@ -143,14 +143,15 @@ CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs endif endif +AFLAGS_DEBUG := -Wa,-gstabs + # turn jbsr into jsr for m68k ifeq ($(ARCH),m68k) ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4) AFLAGS_DEBUG := -Wa,-gstabs,-S endif -else -AFLAGS_DEBUG := -Wa,-gstabs endif + AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS) LDFLAGS += -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)