From 648333d2d53a18b4e10060b03429ee41f7935433 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 27 Apr 2016 13:41:59 +0300 Subject: [PATCH] esp8266/Makefile: Override abort() when building axtls. abort() is a special function known to compiler as no-return. --- esp8266/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_"