1.安装Clang并set up几个aliases

例如,在Debian上:

sudo apt-get install clang lld gcc-multilib
 
alias wld=“wasm-ld-8 --no-entry --export-dynamic --allow-undefined”
 
alias wcc=“clang --target=wasm32 -c -O3”

2.对.c文件进行编译(.c包含了一个功能函数,没有main函数)

Build a wasm binary with

wcc reverse.c
 
wld reverse.o -o reverse.wasm

——以上为自己总结的较为官方的方法。


A Student on the way to full stack of Web3.