windows下安装wabt
-
安装前准备cmake、mingw环境
-
步骤
# 1.克隆wabt源码 git clone https://github.com/WebAssembly/wabt.git # 2.进入wabt文件夹 cd wabt # 3.创建源码编译后文件存储位置 mkdir build # 4.进入build文件夹准备编译 cd build # 5.使用cmake编译 cmake .. -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_INSTALL_PREFIX=..in -G "MinGW Makefiles" # 6.进入CMakeFiles文件夹准备安装 cd CMakeFiles # 7.安装 cmake --build .. --config DEBUG --target install
- 注意:
-
如果错误是:
CMake Warning at CMakeLists.txt:151 (message): Error running file on dummy executable
可以不用管
-
但是如果错误是:
CMake Error at CMakeLists.txt:333 (message): Can't find third_party/gtest. Run git submodule update --init, or disable with CMake -DBUILD_TESTS=OFF.
执行
git submodule update --init
然后再进行第5步
-
- 注意:
-
设置环境变量
path+=E:softwareemsdkwabtin
-
验证
wasm2wat