summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDaniel Campora <daniel@wipy.io>2015-04-28 21:18:47 +0200
committerDaniel Campora <daniel@wipy.io>2015-04-29 00:03:58 +0200
commit5225e29ce706ca7601aeeaa286c84ee0e6fa597b (patch)
treea54cb6fab05c25502d49a1b0de7f2ea5bc14c622
parentf81684141ec7dde97125f8bf6cca8994c7ff09c2 (diff)
downloadmicropython-5225e29ce706ca7601aeeaa286c84ee0e6fa597b.tar.gz
micropython-5225e29ce706ca7601aeeaa286c84ee0e6fa597b.zip
cc3200: Remove unneeded -lgcc in Makefile.
-rw-r--r--cc3200/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/Makefile b/cc3200/Makefile
index cdc6bddb1d..29318d44ec 100644
--- a/cc3200/Makefile
+++ b/cc3200/Makefile
@@ -16,7 +16,7 @@ include ../py/mkenv.mk
CROSS_COMPILE ?= arm-none-eabi-
CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -march=armv7e-m -mabi=aapcs -mcpu=cortex-m4 -msoft-float -mfloat-abi=soft -fsingle-precision-constant -Wdouble-promotion
-CFLAGS = -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -nostdlib -lgcc $(CFLAGS_CORTEX_M4)
+CFLAGS = -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -nostdlib $(CFLAGS_CORTEX_M4)
CFLAGS += -g -ffunction-sections -fdata-sections -fno-common -fsigned-char -mno-unaligned-access
CFLAGS += -Iboards/$(BOARD)