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

WebAssembly Micro Runtime (WAMR)

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

Defining these types as function parameters can lead to this issue:size_t、intptr_t、long、void* The wasm compiler defines size_t as 32-bit,but the aot runtime compile with msvc_x86_64,the size_t is 64-bit。 If we define...

Let's say you run ``` iwasm --timeout=4000 foo.wasm ``` If `foo.wasm` has a start function with an infinite loop (e.g. due to a bug), the intepreter is not able to...

### Subject of the issue I have generated a test case and tested multiple runtimes with it. WAMR (AOT) mode behaves differently compared to other runtimes for this particular test...

#### Feature During execution of `aot_call_function()` there are up to 3 calls to `aot_copy_exception()` (for the case of exported function has no or single result, which I believe is the...

Thanks for filing a bug or defect report! Please fill out the TODOs below. ### Subject of the issue I buid iwasm to test hello-world sample on macos follow document....

#### Feature Currently, when calling wasm-c-api's `wasm_instance_new*` function, the wasm runtime is first instantiated with `wasm_runtime_instantiate_ex`, and later on the `c_api_func_imports` are registered to the instance. However, during the runtime...

#### Summary To quickly improve WAMR's software quality, this PR uses LLM to generate unit test cases for the interpreter module. #### Changes - Add 15 new unit test cases...

#### Feature Release binaries, libs, and headers along with each release. #### Benefit Simplifies linking against WAMR as an alternative runtime abiding by the Wasm C API. #### Implementation Include...