Hi all,
I have some C/C++ code which I successfully converted to javascript code using emscripten version 1.8.2. Everything works and ran beautifully.
However I decided to update emscripten today to 1.20.0 and now i get this linker error:
warning: unresolved symbol: _ZTVSt9exception
No code has changed. All I did was update emscripten. The linker error seems to be related to throwing exceptions. When I comment out the throw then I don't get the linker warning. My C++ code defines it's own exceptions like so:
#include <exception>
class myException:public std::exception
{
...
}
I get the unresolved symbol warning when I throw one of myException's. But again all this code compiled and linked fine in v1.8.2...what could have changed in v1.20.0 to cause this? Any recommended solutions?
Please help, urgent. Any help GREATLY appreciated. Thanks.