WASC WASC是WebAssembly AOT编译器。 主要目的是将WebAssembly代码转换为机器代码(x86和RISC-V)。 工作方式: 构建和测试 Ubuntu 18.04 $ apt install llvm-9 $ git clone https://github.com/mohanson/wasc $ cd wasc $ ./build.sh $ ./build_test.sh 一个示例是展示其工作方式的最佳方法: $ ./build/wasc example/echo.wasm $ ./example/echo Hello World ! # Hello W