Skip to content

Commit aaf1f76

Browse files
committed
Fix linker errors with WiFiMulti
1 parent 5f72ed2 commit aaf1f76

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

cores/esp8266/abi.cpp

Lines changed: 8 additions & 0 deletions
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)