diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-16 04:53:33 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-16 04:56:23 +0300 |
commit | 6aa7c805cc2812dafb396afcd909bbc99505c99b (patch) | |
tree | 24423727f478829c9bbfd443f1bede5d4deaf9b3 /py | |
parent | bcd0e9a7fa9ca9fa86a5c9ffc1855b74f5cbc6c7 (diff) | |
download | micropython-6aa7c805cc2812dafb396afcd909bbc99505c99b.tar.gz micropython-6aa7c805cc2812dafb396afcd909bbc99505c99b.zip |
esp8266: Cache Xtensa-built libaxtls.a in local build dir.
Allows to build the library variant for other archs in parallel.
Diffstat (limited to 'py')
-rw-r--r-- | py/py.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ ifeq ($(MICROPY_PY_USSL),1) CFLAGS_MOD += -DMICROPY_PY_USSL=1 ifeq ($(MICROPY_SSL_AXTLS),1) CFLAGS_MOD += -DMICROPY_SSL_AXTLS=1 -I../lib/axtls/ssl -I../lib/axtls/crypto -I../lib/axtls/config -LDFLAGS_MOD += -L../lib/axtls/_stage -laxtls +LDFLAGS_MOD += -Lbuild -laxtls endif endif |