From 272e55ca64b5ee35e483f2ad2327a2e147f97779 Mon Sep 17 00:00:00 2001
From: marcansoft <marcansoft@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Date: Sat, 20 Feb 2010 21:28:29 +0000
Subject: [PATCH 1/1] Switch compiler to arm-eabi instead of arm-elf

Non-EABI has been deprecated for a while and in fact won't build
with interworking support these days. Configuring the latest
gcc/binutils for arm-eabi works out of the box, so use that.
---
 common/Makefile.common | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/Makefile.common b/common/Makefile.common
index c1193f9a..0d0e2e82 100644
--- a/common/Makefile.common
+++ b/common/Makefile.common
@@ -9,7 +9,7 @@
 # (The including Makefile still needs to define what 'all' is)
 all:
 
-CROSS   = arm-elf-
+CROSS   = arm-eabi-
 CC	= $(CROSS)gcc
 AS	= $(CROSS)as
 LD	= $(CROSS)ld
-- 
2.39.5