Update windows build step, add CI support for windows (#420)

This commit is contained in:
Xu Jun
2020-10-13 12:13:18 +08:00
committed by GitHub
parent c87f28eacd
commit b929ee3f71
3 changed files with 76 additions and 2 deletions

View File

@ -174,7 +174,7 @@ brew install cmake
```
Then build the source codes:
```
``` Bash
cd product-mini/platforms/darwin/
mkdir build
cd build
@ -184,6 +184,21 @@ make
Note:
WAMR provides some features which can be easily configured by passing options to cmake, please see [WAMR vmcore cmake building configurations](./build_wamr.md#wamr-vmcore-cmake-building-configurations) for details. Currently in MacOS, interpreter, AoT, and builtin libc are enabled by default.
Windows
-------------------------
Make sure `MSVC` and `cmake` are installed and available in the command line environment
Then build the source codes:
``` Bash
cd product-mini/platforms/windows/
mkdir build
cd build
cmake ..
cmake --build . --config Release
```
The executable file is `build/Release/iwasm.exe`
VxWorks
-------------------------
VxWorks 7 SR0620 release is validated.