Enable multi-module support for wasm-c-api (#426)
it is allowed that all imported functions and globals can be linked by multi-module feature automatically or by wasm-c-api manually
This commit is contained in:
@ -1,5 +1,16 @@
|
||||
WAMR supports *wasm-c-api* in both *interpreter* mode and *aot* mode. By default,
|
||||
all samples are compiled and run in "interpreter" mode.
|
||||
WAMR supports *wasm-c-api* in both *interpreter* mode and *aot* mode.
|
||||
|
||||
Before staring, we need to download and intall [WABT](https://github.com/WebAssembly/wabt/releases/latest).
|
||||
|
||||
``` shell
|
||||
$ cd /opt
|
||||
$ wget https://github.com/WebAssembly/wabt/releases/download/1.0.19/wabt-1.0.19-ubuntu.tar.gz
|
||||
$ tar -xzf wabt-1.0.19-ubuntu.tar.gz
|
||||
$ mv wabt-1.0.19 wabt
|
||||
```
|
||||
|
||||
By default, all samples are compiled and run in "interpreter" mode.
|
||||
|
||||
|
||||
``` shell
|
||||
$ mkdir build
|
||||
|
||||
Reference in New Issue
Block a user