Skip to content
Snippets Groups Projects
Commit b62fa913 authored by Marian Balakowicz's avatar Marian Balakowicz
Browse files

Fix gcc 3.4.x AFLAGS setting for m68k platform.

parent 27333f8c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment