From: dekoninggans@gmail.com Date: Thu, 28 Jun 2012 13:56:21 +0000 (+0000) Subject: Changed arm-eabi- to arm-none-eabi (new convention) X-Git-Tag: v1.0.0~186 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/5f60ac57167d2742f269c77b06840a558c32421f Changed arm-eabi- to arm-none-eabi (new convention) --- diff --git a/common/Makefile.common b/common/Makefile.common index 0e3bdd1e..d3aedda6 100644 --- a/common/Makefile.common +++ b/common/Makefile.common @@ -20,7 +20,7 @@ platform = $(shell uname) all: -CROSS ?= arm-eabi- +CROSS ?= arm-none-eabi- CC = $(CROSS)gcc AS = $(CROSS)as 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) 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 LIBS = -lgcc