You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ATTRIBUTIONS.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ WAMR project reused some components from other open source project:
15
15
-**uvwasi**: for the WASI Libc with uvwasi implementation
16
16
-**asmjit**: for the Fast JIT x86-64 codegen implementation
17
17
-**zydis**: for the Fast JIT x86-64 codegen implementation
18
+
-**NuttX ELF headers**: used in core/iwasm/aot/debug/elf_parser.c
18
19
19
20
The WAMR fast interpreter is a clean room development. We would acknowledge the inspirations by [WASM3](https://github.com/wasm3/wasm3) open source project for the approach of pre-calculated oprand stack location.
20
21
@@ -33,6 +34,7 @@ The WAMR fast interpreter is a clean room development. We would acknowledge the
-[Port WAMR to a new platform](./doc/port_wamr.md)
27
27
-[Benchmarks](./tests/benchmarks) and [Samples](./samples)
28
+
-[VS Code development container](./doc/devcontainer.md)
28
29
29
30
iwasm VM core
30
31
=========================
@@ -150,6 +151,7 @@ The WAMR [samples](./samples) integrate the iwasm VM core, application manager a
150
151
151
152
-[**basic**](./samples/basic): Demonstrating how to use runtime exposed API's to call WASM functions, how to register native functions and call them, and how to call WASM function from native function.
152
153
-**[simple](./samples/simple/README.md)**: The runtime is integrated with most of the WAMR APP libraries, and a few WASM applications are provided for testing the WAMR APP API set. It uses **built-in libc** and executes apps in **interpreter** mode by default.
154
+
-**[file](./samples/file/README.md)**: Demonstrating the supported file interaction API of WASI. This sample can also demonstrate the SGX IPFS (Intel Protected File System), enabling an enclave to seal and unseal data at rest.
153
155
-**[littlevgl](./samples/littlevgl/README.md)**: Demonstrating the graphic user interface application usage on WAMR. The whole [LVGL](https://github.com/lvgl/lvgl) 2D user graphic library and the UI application are built into WASM application. It uses **WASI libc** and executes apps in **AOT mode** by default.
154
156
-**[gui](./samples/gui/README.md)**: Move the [LVGL](https://github.com/lvgl/lvgl) library into the runtime and define a WASM application interface by wrapping the littlevgl API. It uses **WASI libc** and executes apps in **interpreter** mode by default.
155
157
-**[multi-thread](./samples/multi-thread/)**: Demonstrating how to run wasm application which creates multiple threads to execute wasm functions concurrently, and uses mutex/cond by calling pthread related API's.
0 commit comments