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 create a ELF object file with wamrc,but i understand how to use it. ``` .\wamrc.exe --format=object --target-abi=eabi --target=aarch64 -o script.o .\script.wasm ``` It could not loaded by iwasm. May...

When dealing with non-gc enabled funcref/externref, need to make sure to push them as i32 type

The following code may fail : ```wasm (module (type (func)) (type (sub (struct (field (ref 0))))) (table funcref (elem $closure)) (func $create (result (ref 1)) (struct.new 1 (ref.func $closure))) (func...

It bases on https://github.com/bytecodealliance/wasm-micro-runtime/pull/2984

I am debugging the case[hello_world.wasm.zip](https://github.com/bytecodealliance/wasm-micro-runtime/files/14181188/hello_world.wasm.zip) on **Android**. I instantiated the wasm module. I called the function `_start`. It will create 10 threads. After `wasm_func_call` executed successfully,`pthread_exit` crashed.

thread-mgr

Hello, I'm running the pigz app from https://github.com/bytecodealliance/wasm-parallel-gzip on Ubuntu and running into some TSAN warnings: ```bash ./iwasm -v=5 --dir=wasm-apps wasm-apps/pigz.aot -p 3 wasm-apps/test.txt [00:44:04:764 - 7F7C90D8A380]: Load module success....

# Build commands I compile the code with commit id 8b8c59589dc725b04754018173463c388e7a29ea. Platform: Ubuntu 20.04 CPU: amd64 compile: ``` export CC=/usr/lib/llvm-16/bin/clang export CXX=/usr/lib/llvm-16/bin/clang++ cd product-mini/platforms/linux/;rm -rf build cmake -DWASM_ENABLE_AOT=1 -DWAMR_BUILD_JIT=1 -DWAMR_BUILD_FAST_JIT=0...

penner@xxx build % ./wamrc --target=aarch64 -o wasm.aot wasm.wasm [18:08:57:013 - 1DEF6D000]: warning: a module with WASI apis should be either a command or a reactor Create AoT compiler with: target:...

done
aot compiler

Hi there, I started to get my eyes on WAMR for an experimental project that aims to offer a uniform way of generating code uniformly across various hardware MCU platforms...

help wanted
platform