nuttx/tools/ci/testlist
chao an b01b93cb54 sim/wamr: add example of WAMR(WebAssembly Micro Runtime)
Added compilation rules to support the construction of WebAssembly(WASM/WAMR):

1. Compile Toolchain
 1> Download WASI sdk and export the WASI_SDK_PATH path:

$ wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-19/wasi-sdk-19.0-linux.tar.gz
$ tar xf wasi-sdk-19.0-linux.tar.gz
Put wasi-sdk-19.0 to your host WASI_SDK_PATH environment variable, like:
$ export WASI_SDK_PATH=`pwd`/wasi-sdk-19.0

 2> Download Wamr "wamrc" AOT compiler and export to the PATH:
$ mkdir wamrc
$ wget https://github.com/bytecodealliance/wasm-micro-runtime/releases/download/WAMR-1.1.2/wamrc-1.1.2-x86_64-ubuntu-20.04.tar.gz
$ tar xf wamrc-1.1.2-x86_64-ubuntu-20.04.tar.gz
$ export PATH=$PATH:$PWD

2. Configuring and running

 1> Configuring sim/wamr and compile:

nuttx$ ./tools/configure.sh  sim/wamr
nuttx$ make
...
Wamrc Generate AoT: /home/archer/code/nuttx/n5/apps/wasm/hello.aot
Wamrc Generate AoT: /home/archer/code/nuttx/n5/apps/wasm/coremark.aot
LD:  nuttx

 2> Copy the generated wasm file(Interpreter/AoT)

nuttx$ cp ../apps/wasm/hello.aot .
nuttx$ cp ../apps/wasm/hello.wasm .
nuttx$ cp ../apps/wasm/coremark.wasm .

 3> Run iwasm

nuttx$ ./nuttx
NuttShell (NSH) NuttX-10.4.0
nsh> iwasm /data/hello.wasm
Hello, World!!
nsh> iwasm /data/hello.aot
Hello, World!!
nsh> iwasm /data/coremark.wasm
2K performance run parameters for coremark.
CoreMark Size    : 666
Total ticks      : 12000
Total time (secs): 12.000000
Iterations/Sec   : 5.000000
Iterations       : 60
Compiler version : Clang 15.0.7
Compiler flags   : Using NuttX compilation options
Memory location  : Defined by the NuttX configuration
seedcrc          : 0xe9f5
[0]crclist       : 0xe714
[0]crcmatrix     : 0x1fd7
[0]crcstate      : 0x8e3a
[0]crcfinal      : 0xa14c
Correct operation validated. See README.md for run and reporting rules.
CoreMark 1.0 : 5.000000 / Clang 15.0.7 Using NuttX compilation options / Defined by the NuttX configuration

Signed-off-by: chao an <anchao@xiaomi.com>
2023-03-02 09:56:35 +01:00
..
arm-01.dat
arm-02.dat
arm-03.dat
arm-04.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-05.dat
arm-06.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-07.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-08.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-09.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-10.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-11.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-12.dat tools/ci/testlist: Switch half build to clang 2022-11-23 07:27:48 +01:00
arm-13.dat tools/ci: Enable stm32u5, stm32wb and stm32wl5 2023-01-24 08:40:50 +09:00
codechecker.dat tools/ci/docker/linux/Dockerfile: Install CodeChecker and requirements(clang, clang-tidy) 2022-10-12 16:23:43 +08:00
macos.dat Remove the tail spaces from all files except Documentation 2023-02-26 13:24:24 -08:00
other.dat
risc-v.dat ci: Exclude litex/arty_a7 from tools/ci/testlist/risc-v.dat 2022-12-11 22:41:25 +08:00
sim-01.dat sim/wamr: add example of WAMR(WebAssembly Micro Runtime) 2023-03-02 09:56:35 +01:00
sim-02.dat
xtensa.dat