7.9 KiB
Build WAMR Core
Please follow the instructions below to build the WAMR core on different platforms.
Linux
First of all please install library dependencies of lib gcc. Use installation commands below for Ubuntu Linux:
sudo apt install lib32gcc-5-dev g++-multilib
Or in Fedora:
sudo dnf install glibc-devel.i686
After installing dependencies, build the source code:
cd core/iwasm/products/linux/
mkdir build
cd build
cmake ..
make
Mac
Make sure to install Xcode from App Store firstly, and install cmake.
If you use Homebrew, install cmake from the command line:
brew install cmake
Then build the source codes:
cd core/iwasm/products/darwin/
mkdir build
cd build
cmake ..
make
VxWorks
VxWorks 7 SR0620 release is validated.
First you need to build a VSB. Make sure UTILS_UNIX layer is added in the VSB. After the VSB is built, export the VxWorks toolchain path by:
export <vsb_dir_path>/host/vx-compiler/bin:$PATH
Now switch to iwasm source tree to build the source code:
cd core/iwasm/products/vxworks/
mkdir build
cd build
cmake ..
make
Create a VIP based on the VSB. Make sure the following components are added:
- INCLUDE_POSIX_PTHREADS
- INCLUDE_POSIX_PTHREAD_SCHEDULER
- INCLUDE_SHARED_DATA
- INCLUDE_SHL
Copy the generated iwasm executable, the test WASM binary as well as the needed shared libraries (libc.so.1, libllvm.so.1 or libgnu.so.1 depending on the VSB, libunix.so.1) to a supported file system (eg: romfs).
Zephyr
You need to download the Zephyr source code first and embed WAMR into it.
git clone https://github.com/zephyrproject-rtos/zephyr.git
cd zephyr/samples/
cp -a <iwasm_dir>/products/zephyr/simple .
cd simple
ln -s <iwam_dir> iwasm
ln -s <shared_lib_dir> shared-lib
mkdir build && cd build
source ../../../zephyr-env.sh
cmake -GNinja -DBOARD=qemu_x86 ..
ninja
AliOS-Things
- a developerkit board id needed for testing
- download the AliOS-Things code
git clone https://github.com/alibaba/AliOS-Things.git
- copy <iwasm_root_dir>/products/alios-things directory to AliOS-Things/middleware, and rename it as iwasm
cp -a <iwasm_root_dir>/products/alios-things middleware/iwasm
- create a link to <iwasm_root_dir> in middleware/iwasm/ and rename it to iwasm
ln -s <iwasm_root_dir> middleware/iwasm/iwasm
- create a link to <shared-lib_root_dir> in middleware/iwasm/ and rename it to shared-lib
ln -s <shared-lib_root_dir> middle/iwasm/shared-lib
- modify file app/example/helloworld/helloworld.c, patch as:
#include <stdbool.h> #include <aos/kernel.h> extern bool iwasm_init(); int application_start(int argc, char *argv[]) { int count = 0; iwasm_init(); ... }
- modify file app/example/helloworld/aos.mk
$(NAME)_COMPONENTS := osal_aos iwasm
- build source code
aos make helloworld@developerkit -c config aos make
- download the binary to developerkit board, check the output from serial port
Docker
Docker will download all the dependencies and build WAMR Core on your behalf.
Make sure you have Docker installed on your machine: macOS, Windows or Linux.
Build the Docker image:
docker build --rm -f "Dockerfile" -t wamr:latest .
Run the image in interactive mode:
docker run --rm -it wamr:latest
You'll now enter the container at /root
.
Build WASM app
You can write a simple test.c
as the first sample.
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
char *buf;
printf("Hello world!\n");
buf = malloc(1024);
if (!buf) {
printf("malloc buf failed\n");
return -1;
}
printf("buf ptr: %p\n", buf);
sprintf(buf, "%s", "1234\n");
printf("buf: %s", buf);
free(buf);
return 0;
}
There are three methods to build a WASM binary. They are Emscripten, the clang compiler and Docker.
Use Emscripten tool
A method to build a WASM binary is to use Emscripten tool emcc
.
Assuming you are using Linux, you may install emcc from Emscripten EMSDK following the steps below:
git clone https://github.com/emscripten-core/emsdk.git
emsdk install latest
emsdk activate latest
source ./emsdk_env.sh
.
The Emscripten website provides other installation methods beyond Linux.
Use the emcc command below to build the WASM C source code into the WASM binary.
emcc -g -O3 *.c -s WASM=1 -s SIDE_MODULE=1 -s ASSERTIONS=1 -s STACK_OVERFLOW_CHECK=2 \
-s TOTAL_MEMORY=65536 -s TOTAL_STACK=4096 -o test.wasm
You will get test.wasm
which is the WASM app binary.
Use clang compiler
Another method to build a WASM binary is to use clang compilerclang-8
.
Add source to your system source list from llvm website, for ubuntu16.04, add following lines to /etc/apt/sources.list:
deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main
deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial main # 7
deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main
deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main # 8
deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-8 main
deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-8 main
Download and install clang-8 tool-chain using following commands:
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install llvm-8 lld-8 clang-8
Create a soft link under /usr/bin:
cd /usr/bin
sudo ln -s wasm-ld-8 wasm-ld
Use the clang-8 command below to build the WASM C source code into the WASM binary.
clang-8 --target=wasm32 -O3 -Wl,--initial-memory=131072,--allow-undefined,--export=main,
--no-threads,--strip-all,--no-entry -nostdlib -o test.wasm test.c
You will get test.wasm
which is the WASM app binary.
Use cmake
If you have a cmake project, you can cross compile your project by using the toolchain provided by WAMR, the compiler used by WAMR toolchain is clang-8
.
We can generate a CMakeLists.txt
file for test.c
:
cmake_minimum_required (VERSION 3.5)
project(hello_world)
add_executable(hello_world test.c)
It is quite simple to build this project by cmake:
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=$WAMR_ROOT/test-tools/toolchain/wamr_toolchain.cmake
make
You will get hello_world
which is the WASM app binary.
For more details about wamr toolchain, please refer to test-tools/toolchain.
Using Docker
The last method availble is using Docker. We assume you've already configured Docker (see Platform section above) and have a running interactive shell. Currently the Dockerfile only supports compiling apps with clang, with Emscripten planned for the future.
Use the clang-8 command below to build the WASM C source code into the WASM binary.
clang-8 --target=wasm32 -O3 -Wl,--initial-memory=131072,--allow-undefined,--export=main,
--no-threads,--strip-all,--no-entry -nostdlib -o test.wasm test.c
You will get test.wasm
which is the WASM app binary.
Run WASM app
Assume you are using Linux, the command to run the test.wasm is:
cd iwasm/products/linux/build
./iwasm test.wasm
You will get the following output:
Hello world!
buf ptr: 0x400002b0
buf: 1234
If you would like to run the test app on Zephyr, we have embedded a test sample into its OS image. You will need to execute:
ninja run