esp8266/Makefile: Override abort() when building axtls.

abort() is a special function known to compiler as no-return.
This commit is contained in:
Paul Sokolovsky 2016-04-27 13:41:59 +03:00
parent 480c212009
commit 648333d2d5
1 changed files with 1 additions and 1 deletions

View File

@ -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_"