Fix WASM build of skeleton tool

This commit is contained in:
jaseg 2025-12-15 14:25:57 +01:00
parent 0d44db1398
commit 2f6f35591e
4 changed files with 171 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#include <stdlib.h>
extern "C" {
void* __cxa_allocate_exception(size_t) {
abort();
}
void __cxa_throw(void *, void *, void (*)(void *)) {
abort();
}
}