我在OSX上运行并尝试将以下 c 代码编译为 webAssembly:
void test(){
//do stuff
}
我查看了这个示例并尝试运行以下命令:
clang -emit-llvm --target=wasm32 -Oz test.c -c -o test.bc
llc -asm-verbose=false -o test.s test.bc
第一个命令工作正常,clang 生成 .bc 文件,但是当我尝试运行第二个命令时,我得到:llc: : error: unable to get target for 'wasm32', see --version and --triple.
任何帮助,将不胜感激。