Skip to content

Commit 358fed5

Browse files
committed
Fix linker errors with WiFiMulti
1 parent 81c9edb commit 358fed5

File tree

1 file changed

+8
-0
lines changed
  • hardware/esp8266com/esp8266/cores/esp8266

1 file changed

+8
-0
lines changed

hardware/esp8266com/esp8266/cores/esp8266/abi.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ namespace std {
5858
void __throw_bad_function_call() {
5959
abort();
6060
}
61+
62+
void __throw_length_error(char const*) {
63+
abort();
64+
}
65+
66+
void __throw_bad_alloc() {
67+
abort();
68+
}
6169
}
6270

6371
// TODO: rebuild windows toolchain to make this unnecessary:

0 commit comments

Comments
 (0)