wasm-micro-runtime icon indicating copy to clipboard operation
wasm-micro-runtime copied to clipboard

WebAssembly Micro Runtime (WAMR)

Results 327 wasm-micro-runtime issues
Sort by recently updated
recently updated
newest added

## Step to replicates 1. Build ./sample/basic WASM application 2. Move to wamr-compiler and build wamrc 3. Built AOT object from ./out/wasm-apps/testapp.wasm with wamrc: ```console /path/to/wamr-compiler/build/wamrc --cpu=apple-m1 --size-level=3 -o ./out/wasm-apps/testapp.aot...

esp-idf: Make esp-idf supports Libc WASI 1. Support to get WASM APP libs' DIR from upper layer 2. Add SSP support for esp-idf platform 3. Change the errno of readlinkat

esp-idf: Add more socket support for esp-idf 1. Update sock_accept interface to match new WASI snapshot1 2. Add sock_addr_resolve interface which is similar to `getaddrinfo` in POSIX 3. Add sock_addr_remote...

I'm in the progress of submitting a PR with a WAMR Homebrew formula here: https://github.com/Homebrew/homebrew-core/pull/107301 As you can see in the review, we are having certain issues there, but the...

Can't make a simple modification to resolve the issue of accidentally meeting "EOF" on MacOS. Has to - Upgrade test scripts to python3 - Use a new `TTYRunner` on MacOS...

- allow max_page_count to be 65536 - allow init_page_count to be 65536 - `num_bytes_per_page * XXX_page_count` will be great than UINT32_MAX

Dear WAMR developers, When working with WASI calls inside Intel SGX, I discovered a glitch when writing into stdout/stderr using the code snippet present here: https://github.com/bytecodealliance/wasm-micro-runtime/blob/0020b3ae6874d275a7de9fc95fe078355363aab5/core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/src/posix.c#L1249-L1262 Indeed, when this code...

Plan to upgrade - [wasi-sdk](https://github.com/WebAssembly/wasi-sdk) to [wasi-sdk-16](https://github.com/WebAssembly/wasi-sdk/releases/tag/wasi-sdk-16) - [wabt](https://github.com/WebAssembly/wabt) to [1.0.29](https://github.com/WebAssembly/wabt/releases/tag/1.0.29) WAMR is using *wasi-sdk* to translate C/C++ to Wasm. WAMR is using *wabt* to translate Wabt to Wasm. WAMR...

enhancement

- Wrongly format code in `#ifdef...#else...#endif` ```c #if WASM_CPU_SUPPORTS_UNALIGNED_ADDR_ACCESS != 0 local_offset = *frame_ip++; #else local_offset = *frame_ip; frame_ip += 2; #endif ``` will be formatted ```c #if WASM_CPU_SUPPORTS_UNALIGNED_ADDR_ACCESS !=...