From: marcansoft Date: Sat, 20 Feb 2010 21:28:29 +0000 (+0000) Subject: Switch compiler to arm-eabi instead of arm-elf X-Git-Tag: v1.0.0~355 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/272e55ca64b5ee35e483f2ad2327a2e147f97779 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. --- 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