我刚刚启动 asm.js 并停留在某一点。我已经安装了 emscripten、clang 和 node js,并且我的 c 程序也使用 emscripten 运行良好,使用以下命令:
./emcc hello_world.c
./emcc hello_world.c -o hello_world.html
但是当我尝试使用 asm 运行此文件时,它会显示此命令的插入错误:
./emcc -01 -s ASM_JS=1 hello_world.c
Traceback (most recent call last):
File "./emcc", line 1219, in <module>
assert opt_level >= 1 or fastcomp, 'asm.js requires -O1 or above
AssertionError: asm.js requires -O1 or above
那么如何解决这个错误呢?
,提前致谢