diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-27 13:41:59 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-27 13:41:59 +0300 |
commit | 648333d2d53a18b4e10060b03429ee41f7935433 (patch) | |
tree | 966931be9a015dd60b4b534c357d8b552cf51357 | |
parent | 480c212009c542bef7c4bb58b92586608b3e2105 (diff) | |
download | micropython-648333d2d53a18b4e10060b03429ee41f7935433.tar.gz micropython-648333d2d53a18b4e10060b03429ee41f7935433.zip |
esp8266/Makefile: Override abort() when building axtls.
abort() is a special function known to compiler as no-return.
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 85ad273be4..5f48baff7b 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -204,4 +204,4 @@ axtls: cd ../lib/axtls; cp config/upyconfig config/.config cd ../lib/axtls; make oldconfig -B cd ../lib/axtls; make clean - cd ../lib/axtls; make all CC="$(CC)" LD="$(LD)" CFLAGS_EXTRA="$(CFLAGS_XTENSA)" + cd ../lib/axtls; make all CC="$(CC)" LD="$(LD)" CFLAGS_EXTRA="$(CFLAGS_XTENSA) -Dabort=abort_" |