mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-24 07:34:40 +08:00
Changed arm-eabi- to arm-none-eabi (new convention)
This commit is contained in:
parent
1e26214152
commit
5f60ac5716
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,7 @@ platform = $(shell uname)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
||||||
CROSS ?= arm-eabi-
|
CROSS ?= arm-none-eabi-
|
||||||
CC = $(CROSS)gcc
|
CC = $(CROSS)gcc
|
||||||
AS = $(CROSS)as
|
AS = $(CROSS)as
|
||||||
LD = $(CROSS)ld
|
LD = $(CROSS)ld
|
||||||
|
@ -66,6 +66,7 @@ VPATH = . ../common/ ../fpga/
|
||||||
INCLUDES = ../include/proxmark3.h ../include/at91sam7s512.h ../include/config_gpio.h ../include/usb_cmd.h $(APP_INCLUDES)
|
INCLUDES = ../include/proxmark3.h ../include/at91sam7s512.h ../include/config_gpio.h ../include/usb_cmd.h $(APP_INCLUDES)
|
||||||
|
|
||||||
CFLAGS = -c $(INCLUDE) -Wall -Werror -pedantic -std=gnu99 $(APP_CFLAGS)
|
CFLAGS = -c $(INCLUDE) -Wall -Werror -pedantic -std=gnu99 $(APP_CFLAGS)
|
||||||
|
#CFLAGS = -c $(INCLUDE) -pedantic -std=gnu99 $(APP_CFLAGS)
|
||||||
LDFLAGS = -nostartfiles -nodefaultlibs -Wl,-gc-sections -n
|
LDFLAGS = -nostartfiles -nodefaultlibs -Wl,-gc-sections -n
|
||||||
LIBS = -lgcc
|
LIBS = -lgcc
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue