From aaf1f7652d2b35463c072c472d73f6d59bf40818 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Fri, 19 Jun 2015 20:44:33 +0300 Subject: [PATCH] Fix linker errors with WiFiMulti --- cores/esp8266/abi.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cores/esp8266/abi.cpp b/cores/esp8266/abi.cpp index b863997a3..91e999a0c 100644 --- a/cores/esp8266/abi.cpp +++ b/cores/esp8266/abi.cpp @@ -58,6 +58,14 @@ namespace std { void __throw_bad_function_call() { abort(); } + +void __throw_length_error(char const*) { + abort(); +} + +void __throw_bad_alloc() { + abort(); +} } // TODO: rebuild windows toolchain to make this unnecessary: