diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-01-08 01:30:06 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-01-08 01:30:20 +0200 |
commit | adfe4ff72acef87b9092ced0fac91b49bf47ce2a (patch) | |
tree | 81a8ce25d5645ff0510d4ab65172d8bc1bc335ec /esp8266 | |
parent | 54729247e11eac1c86a2e0b1778b8c4406a53445 (diff) | |
download | micropython-adfe4ff72acef87b9092ced0fac91b49bf47ce2a.tar.gz micropython-adfe4ff72acef87b9092ced0fac91b49bf47ce2a.zip |
esp8266: Support CFLAGS_EXTRA.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 0162123158..b836248c65 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -31,7 +31,7 @@ CFLAGS_XTENSA = -fsingle-precision-constant -Wdouble-promotion \ -Wl,-EL -mlongcalls -mtext-section-literals \ CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -nostdlib -DUART_OS=$(UART_OS) \ - $(CFLAGS_XTENSA) $(COPT) + $(CFLAGS_XTENSA) $(COPT) $(CFLAGS_EXTRA) LDFLAGS = -nostdlib -T esp8266.ld -Map=$(@:.elf=.map) --cref LIBS = -L$(ESP_SDK)/lib -lmain -ljson -llwip -lpp -lnet80211 -lwpa -lphy -lnet80211 |