wasm-micro-runtime/samples
2026-01-04 23:44:18 +08:00
..
basic refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
bh-atomic Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
cmake Raise wasi-sdk to 25 and wabt to 1.0.37 (#4187) 2025-04-17 16:41:47 +08:00
debug-tools Turn warnings into errors in CI (#4397) 2025-09-11 06:33:04 +08:00
file refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
import-func-callback refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
inst-context refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
inst-context-threads refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
linux-perf Raise wasi-sdk to 25 and wabt to 1.0.37 (#4187) 2025-04-17 16:41:47 +08:00
mem-allocator Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
multi-module refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
multi-thread Port gitbook document to main (#4621) 2025-10-23 16:00:04 +08:00
native-lib Port gitbook document to main (#4621) 2025-10-23 16:00:04 +08:00
native-stack-overflow refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
printversion add a sample to use cmake package (#4291) 2025-05-23 16:56:21 +08:00
ref-types refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
sgx-ra Port gitbook document to main (#4621) 2025-10-23 16:00:04 +08:00
shared-heap refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
shared-module refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
socket-api Port gitbook document to main (#4621) 2025-10-23 16:00:04 +08:00
spawn-thread Port gitbook document to main (#4621) 2025-10-23 16:00:04 +08:00
terminate refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
wasi-threads Turn warnings into errors in CI (#4397) 2025-09-11 06:33:04 +08:00
wasm-c-api refactor: Move gcc flags to common build script. 2026-01-04 23:44:18 +08:00
wasm-c-api-imports Turn warnings into errors in CI (#4397) 2025-09-11 06:33:04 +08:00
workload Port gitbook document to main (#4621) 2025-10-23 16:00:04 +08:00
README.md Get location info from function indexes in addr2line script (#3206) 2024-03-08 10:20:04 +08:00

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.
  • file: 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.
  • 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.
  • spawn-thread: Demonstrating how to execute wasm functions of the same wasm application concurrently, in threads created by host embedder or runtime, but not the wasm application itself.
  • wasi-threads: Demonstrating how to run wasm application which creates multiple threads to execute wasm functions concurrently based on lib wasi-threads.
  • multi-module: Demonstrating the multiple modules as dependencies feature which implements the load-time dynamic linking.
  • ref-types: Demonstrating how to call wasm functions with argument of externref type introduced by reference types proposal.
  • wasm-c-api: Demonstrating how to run some samples from wasm-c-api proposal and showing the supported API's.
  • socket-api: Demonstrating how to run wasm tcp server and tcp client applications, and how they communicate with each other.
  • native-lib: Demonstrating how to write required interfaces in native library, build it into a shared library and register the shared library to iwasm.
  • sgx-ra: Demonstrating how to execute Remote Attestation on SGX with librats, which enables mutual attestation with other runtimes or other entities that support librats to ensure that each is running within the TEE.
  • workload: Demonstrating how to build and run some complex workloads, e.g. tensorflow-lite, XNNPACK, wasm-av1, meshoptimizer and bwa.
  • debug-tools: Demonstrating how to symbolicate a stack trace.