-
hi there,
do you have any plans to support the ESP32 (xtensa/freertos)? i've been [having a bash](https://github.com/intel/wasm-micro-runtime/compare/master...ryankurte:feature/freertos-xtensa) at …
-
Hi,
i have a question regarding reusing the runtime and environment:
1. create a global M3Runtime/M3Environment
2. than execute a module by: m3_ParseModule, m3_LoadModule, m3_FindFunction, m3_C…
-
Right now there is no easy cross platform way to output multiple artifacts from multiple packages into a single directory.
Right now you can do `env GOBIN=bin/ go install cmd/...` on many platforms, …
-
It seems during some recent (in the last 6 months) changes, the invoking of `InitStartFunc` has moved from [`m3_LoadModule`](https://github.com/wasm3/wasm3/blob/v0.4.7/source/m3_env.c#L665) (i.e. as p…
-
I am trying to build wasm3 to wasm target using Emscripten, as described [here](https://github.com/wasm3/wasm3/tree/master/platforms/emscripten).
I am building it on `Ubuntu 20.04` with `Emscripten 2…
-
0b69623b3
```cpp
# define m3ApiCheckMem(off, len) { if (UNLIKELY(off == _mem || ((u64)(off) + (len)) > ((u64)(_mem)+runtime->memory.mallocated->length))) m3ApiTrap(m3Err_trapOutOfBoundsMemoryAcc…
Naios updated
3 years ago
-
hey, just stumbled upon your git repository. Have you considered to use https://github.com/wasm3/wasm3 instead of writing your own transpiler? Might be worth a look.
In case you're not interested, …
-
Implement `Python 3` bindings, so `wasm3` can be easily used from Python.
-
Are there any working implementations of co_await on wasm3 yet?
-
In my current codebase, I have a bunch of full OS threads (`thread::spawn`) that are running select loops to receive messages on channels and reply on other channels. This pattern is pervasive through…