mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
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.
This commit is contained in:
parent
15c4dc5ace
commit
272e55ca64
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue