admin管理员组文章数量:1244257
I think I need some human input here :) I have a simple CPP code:
#include <stdexcept>
#include <emscripten/bind.h>
using namespace emscripten;
double add(double a, double b)
{
if(a>5)
throw std::runtime_error("big a");
return a+b;
}
EMSCRIPTEN_BINDINGS(my_module) {
function("add", &add);
}
I compile this simple example with:
emcc -lembind -o quick_example.js quick_example.cpp -fexceptions -sDISABLE_EXCEPTION_CATCHING=0 -O2
When I catch the error in JavaScript, it prints out weird numbers instead of the error message. I can only see the error message when not using any level of optimization. What am I missing here.
本文标签: javascriptCatching Errors from WebAssembly in an Optimized CodeStack Overflow
版权声明:本文标题:javascript - Catching Errors from WebAssembly in an Optimized Code - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1740154196a2233228.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论