我刚刚开始使用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
那么如何解决这个错误?
,提前致谢
答案 0 :(得分:0)
做
时应该没问题./emcc -02 -s ASM_JS=1 hello_world.c