aboutsummaryrefslogtreecommitdiff
path: root/cc3200/Makefile
diff options
context:
space:
mode:
authorMatt Anderson2015-04-26 08:34:01 -0400
committerDaniel Campora2015-04-28 16:48:26 +0200
commit04588330726547fd10e1f9df05580fc29da0e0e4 (patch)
tree24bb38153252e03db8f8f21bf589f7b943271f1e /cc3200/Makefile
parentabea1c38a94183999c07c848f0b48ca55b42b653 (diff)
cc3200: Make telnet login procedure work with Tera Term.
This is actually a workaround Ter Term's issue of not obeying to the telnet options that the server is sending. Therefore, we must buffer chars until either a '\r' or the max length of the username/password is received.
Diffstat (limited to 'cc3200/Makefile')
-rw-r--r--cc3200/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/Makefile b/cc3200/Makefile
index 29318d44e..cdc6bddb1 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 $(CFLAGS_CORTEX_M4)
+CFLAGS = -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -nostdlib -lgcc $(CFLAGS_CORTEX_M4)
CFLAGS += -g -ffunction-sections -fdata-sections -fno-common -fsigned-char -mno-unaligned-access
CFLAGS += -Iboards/$(BOARD)