build: remove wrong comment about avr-gcc

Flymaple doesn't use avr-gcc.
This commit is contained in:
Lucas De Marchi 2015-11-03 12:11:22 -02:00 committed by Andrew Tridgell
parent 0e6da397d1
commit 633e9dc036

View File

@ -73,14 +73,6 @@ LDFLAGS = $(CPUFLAGS) $(OPTFLAGS) $(WARNFLAGS) -mcpu=cortex-m3 -mthumb
-Xassembler --march=armv7-m -Wall
LDFLAGS += -Wl,--gc-sections -Wl,-Map -Wl,$(SKETCHMAP) $(CPULDFLAGS)
# under certain situations with certain avr-gcc versions the --relax flag causes
# a bug. Give the user a way to disable this flag per-sketch.
# I know this is a rotten hack but we're really close to sunset on AVR.
EXCLUDE_RELAX := $(wildcard $(SRCROOT)/norelax.inoflag)
ifeq ($(EXCLUDE_RELAX),)
# LDFLAGS += -Wl,--relax
endif
LIBS = -lm
ifeq ($(VERBOSE),)