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

I run WASM code on a Raspberry Pi 4 (ARM64, using their OS but with the RT patch) using WAMR, and my WASM code fails when it tries to create...

This PR is to add a GH action to test compilation of the product-mini "simple" example on Zephyr against the STM32 board.

The WASM program doesn't like the normal X86 or arm program. It doesn't have the registers, so we can't get the stack memory address. I wonder how to check the...

I used the AOT mode of different runtimes to run randomly generated wasm binaries, and the output from WAMR was different from the others. [filea262_9.zip](https://github.com/bytecodealliance/wasm-micro-runtime/files/13486683/filea262_9.zip) WAMR used a commit from...

I use several runtimes to execute the same randomly generated WASM binary. Although they all report division by zero errors, the execution time of WAMR far exceeds that of other...

My change is only at file lib/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.h lib/wasm-micro-runtime/core/iwasm/libraries/libc-wasi/libc_wasi_wrapper.c Notice there 146 files changes in this pull request so that mean some of change haven't been merge to main before. Please...

Can someone here help me interpret this error message when running iwasm with llvm-jit: ``` JIT session error: Symbols not found: [ ceilf ] JIT session error: Failed to materialize...

I constructed a wasm binary with many exported function. I used the following command and compared the outputs of WAMR with other runtimes. [filea202224.zip](https://github.com/bytecodealliance/wasm-micro-runtime/files/13403640/filea202224.zip) ``` wasmtime compile filea202224.wasm wasmer compile...

There is currently a [Zephyr module file](https://github.com/bytecodealliance/wasm-micro-runtime/blob/main/zephyr/module.yml) in this repository, but it cannot be used because it references `cmake-ext` and `kconfig-ext`, despite `CMakeLists.txt` and `Kconfig` not being present for WAMR...

Recently, there is a problem revealed by a series of fuzz test cases, like #2555, #2560, #2562, #2563, ~~#2650~~, #2728, #2732, #2755. All of them share the same pattern in...