为使用 "MODULARIZE=1" 导出的 Emscripten WebAssembly 模块中的 extern 函数提供 JS 函数?



当将 MODULARIZE=1 选项与 emcc 一起使用时,有没有办法为 externsendToJs函数提供一个函数:

EMCC 编译命令

emcc test.cpp -O3 -s WASM=1 -s MODULARIZE=1 -o test.js

测试.cpp

...
extern void sendToJs(int num);
...

爪哇语

const Module = require('test.js');
Module({
wasmBinary: wasmBinary,
// I was hoping this kind of thing might work:
env: {
_sendToJs: num => console.log('fromWasm', num)
}
})
.then(...);

这似乎有效:

Javascript:

Module({
wasmBinary: wasmBinary,
// Override instantiateWasm
instantiateWasm: (info, receiveInstance) => {
info.env._sendToJs = (num) => console.log('sendToJs', num);
WebAssembly.instantiate(wasmBinary, info)
.then(response => receiveInstance(response.instance))
.catch(error => console.error(error));
return true;
}
})
.then(...);

相关内容

  • 没有找到相关文章

最新更新