diff options
author | Daniel Campora <daniel@wipy.io> | 2015-06-18 08:59:59 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-06-18 09:01:37 +0200 |
commit | 92d95cc9d30ec2bacb39bc63dabed309cb4f8636 (patch) | |
tree | 51fc76342be048114441ade39f24bf369fd0adee /cc3200 | |
parent | 7c61249ae630674cbde1e678be314c1508c3c160 (diff) | |
download | micropython-92d95cc9d30ec2bacb39bc63dabed309cb4f8636.tar.gz micropython-92d95cc9d30ec2bacb39bc63dabed309cb4f8636.zip |
cc3200: Remove --specs=nano.specs linker flag.
Diffstat (limited to 'cc3200')
-rw-r--r-- | cc3200/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/Makefile b/cc3200/Makefile index d86b983268..9591393504 100644 --- a/cc3200/Makefile +++ b/cc3200/Makefile @@ -21,7 +21,7 @@ CFLAGS = -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -nostdlib $(CFLAGS_CORTE CFLAGS += -g -ffunction-sections -fdata-sections -fno-common -fsigned-char -mno-unaligned-access CFLAGS += -Iboards/$(BOARD) -LDFLAGS = -Wl,-nostdlib -Wl,--gc-sections -Wl,-Map=$@.map --specs=nano.specs +LDFLAGS = -Wl,-nostdlib -Wl,--gc-sections -Wl,-Map=$@.map ifeq ($(BTARGET), application) # qstr definitions (must come before including py.mk) |