wasm2cil icon indicating copy to clipboard operation
wasm2cil copied to clipboard

A "compiler" that can take a WebAssembly/WASI module and convert it to a .NET assembly

Results 6 wasm2cil issues
Sort by recently updated
recently updated
newest added

It'd be a shame if this project was dead. Getting native .NET libraries from other languages would be awesome. Even just getting stock Sqlite as a native library for in-memory...

Here's a list of missing features from [wasi-libc (as of Feb 23)](https://github.com/WebAssembly/wasi-libc/blob/2b7e73ae7ac0bad6391d89cc3274a28412243389/libc-bottom-half/headers/public/wasi/api.h). This could be used to track issues: # Flags - [ ] __WASI_SIGNAL_NONE # Structs - [ ]...

Hi, as I figure out currently to play around with wasm2cil need to clone project and build via dotnet run command Will be great to publish compiler to a NuGet...

Is there any instruction somewhere on how to use your project? I would like to try on this module: https://aois.blob.core.windows.net/public/secp256k1.wasm

I might be missing something but I can't figure out how to load a module that has a set of imports that look like this: ``` (import "env" "myfunc" (func...

It seems like the compiler completely ignores the exports section, leading to quite a lot of functions missing in my code. This is because they actually have the same function...