Restore some files and fix minor issues of SGX platform (#144)

This commit is contained in:
Weining
2019-11-21 10:30:57 +08:00
committed by wenyongh
parent 80045ddb55
commit a7a7d04dc6
5 changed files with 26 additions and 54 deletions

View File

@ -1,5 +1,10 @@
WebAssembly Micro Runtime
=========================
**A [Bytecode Alliance][BA] project**
[BA]: https://bytecodealliance.org/
WebAssembly Micro Runtime (WAMR) is a standalone WebAssembly (WASM) runtime with small footprint. It includes a few parts as below:
- A WebAssembly VM core (namely iwasm)
- The supporting API's for the WASM applications
@ -57,7 +62,7 @@ Embed WAMR
WAMR can be built into a standalone executable which takes the WASM application file name as input, and then executes it. In some other situations, the WAMR source code is embedded the product code and built into the final product.
WAMR provides a set of C API for loading the WASM module, instantiating the module and invoking a WASM function from a native call.
WAMR provides a set of C API for loading the WASM module, instantiating the module and invoking a WASM function from a native call.
See the [doc/embed_wamr.md](./doc/embed_wamr.md) for the details.
@ -66,7 +71,7 @@ WAMR application programming library
WAMR defined event driven programming model:
- Single thread per WASM app instance
- App must implement system callbacks: on_init, on_destrory
- App must implement system callbacks: on_init, on_destroy
In general there are a few API classes for the WASM application programming:
@ -112,7 +117,7 @@ See the [major features releasing history and contributor names](./doc/release_a
Roadmap
=======
See the [roadmap](./doc/roadmap.md) to understand what major features are planed or under development.
See the [roadmap](./doc/roadmap.md) to understand what major features are planned or under development.
Please submit issues for any new feature request, or your plan for contributing new features.