作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 JS 中从 Emscripten 编译的 WASM 创建 WebAssembly.Instance,其中包括对 sprintf 的调用,会导致此错误:
Uncaught (in promise) LinkError: WebAssembly.Instance(): Import #1 module="env" function="_sprintf" error: function import requires a callable...
#include <stdio.h>
extern "C" {
int main() {
char buffer [50];
int n, a=5, b=3;
n=sprintf (buffer, "%d plus %d is %d", a, b, a+b);
return 0;
}
}
emcc src/test.cpp -O3 -s WASM=1 -s SIDE_MODULE=1 -o out/test.wasm
最佳答案
Is sprintf not included by Emscripten as part of libc?
SIDE_MODULE=1
进行编译根据定义,它不会链接到系统库中。
sprintf
实现或者停止编译为侧模块并让 emscripten 为您处理它。
关于emscripten - WebAssembly 链接错误 : _sprintf function import requires a callable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45260941/
我是一名优秀的程序员,十分优秀!