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

Hi, I found the definition of `sock_accept` had been added in WASI snapshot1 https://github.com/WebAssembly/WASI/blob/ab030f6639f0de7e87e2fa5bed45c6bd1c324ce7/phases/snapshot/witx/wasi_snapshot_preview1.witx#L476-L485 and wasi-libc has been updated. https://github.com/WebAssembly/wasi-libc/pull/282 https://github.com/WebAssembly/wasi-libc/pull/287 Shall we update `sock_accept` interface in warm?

It looks like `wamrc` currently supports generating LLVM optimized and unoptimzed code. I am looking to run some instrumentation passes on this LL file and generate an AoT executable again....

In the document: https://github.com/bytecodealliance/wasm-micro-runtime/blob/main/doc/wamr_api.md There's an example the defines timer_update as: ``` /* Timer callback */ void timer_update(user_timer_t timer { attr_container_t *event; ``` The missing closing parens means it is...

about [doc/pthread_library.md](https://github.com/bytecodealliance/wasm-micro-runtime/blob/main/doc/pthread_library.md) [dlmalloc.c](https://github.com/WebAssembly/wasi-libc/blob/659ff414560721b1660a19685110e484a081c3d4/dlmalloc/src/dlmalloc.c) define some alias functions and `posix_memalign`. Fail to link after remove `dlmalloc.o` from `libc.a`. ``` [build] wasm-ld: error: /opt/wasi-sdk-14.0/bin/../share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a(stdlib_new_delete.cpp.o): undefined symbol: posix_memalign [build] wasm-ld: error: /opt/wasi-sdk-14.0/bin/../share/wasi-sysroot/lib/wasm32-wasi/libc.a(atexit.o): undefined...

I think is necesary to build wamrc with llvm_xtensa, but when i try ... ./build_llvm_xtensa.sh mkdir build && cd build cmake .. make throw the following errors. [ 77%] Building...

Hi I have a question regarding the build options for WAMR, if multiple options such as WAMR_BUILD_INTERP, WAMR_BUILD_JIT, WAMR_FAST_INTERP are enabled, how the final artifact will behave? Is the final...

Hello everyone, I am having issues in deploying the WAMR SGX application in Azure using the DCAP driver. I am getting this error: "_Enclave not authorized to run, .e.g. provisioning...

Hi all, firstly want to say this is such a cool project! I have been working on porting to a new platform which is a bit quirky in how it...

In looking at the code it looks like the application framework APIs - req/resp, pub/sub, sensors, etc. are tied to the application manager. Being that I have already a framework...

The WASM interpreted module structures have interfaces for exported globals, but it seems like AoT structures only implement exported functions. Is this a feature on the radar for future releases?...