more changes

This commit is contained in:
Xin Wang
2019-09-07 13:23:52 +08:00
parent d9540ebd16
commit 2b915b9383
7 changed files with 65 additions and 33 deletions

BIN
doc/pics/vgl_demo2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

0
doc/release_ack.md Normal file
View File

14
doc/roadmap.md Normal file
View File

@ -0,0 +1,14 @@
## Ahead of time compilation
## WASI support
## Data serialization
## Threading
##

View File

@ -1,15 +1,9 @@
WASM application library
========================
In general, there are 3 classes of API's important for the WASM application:
- Built-in API's: WAMR provides a minimal API set for developers.
- 3rd party API's: Programmer can download and include any 3rd party C source code and add it into their own WASM app source tree.
- Platform native API's: WAMR provides a mechanism to export a native API to the WASM application.
WAMR APP API includes built-in Libc API's, Base library and Extension library reference.
Built-in application library
---------------
Built-in API's include Libc API's, Base library and Extension library reference.
**Libc API's**<br/>
This is a minimal set of Libc API's for memory allocation, string manipulation and printing. The header file is located at ```lib/app-libs/libc/lib_base.h```. The current supported API set is listed here: