-
This issue/discussion is for adding WASI binary support for Wanix. Currently Wanix can only run binaries compiled by Go for the js runtime (not wasi, not any other language).
One initial concern w…
-
Now that wasi preview2 is stable, we should start looking into using `wasmtime_wasi::preview2::WasiCtx` - from what I can tell there will be some minor breaking changes on our end, particularly around…
-
wasm-opt which we already ship as part of the wasm-tools workload can be used to optimize wasi builds as well. We should have an optional step to run it as part of the build.
-
The WASI subgroup maintains the [`wit-abi-up-to-date` Github Action](https://github.com/WebAssembly/wit-abi-up-to-date) for checking that the wit in a proposal is valid, and that the markdown files in…
-
When the following is compiled with WASI SDK to `test.wasm`:
```c
#include
int main(int argc, const char **argv)
{
FILE *file = fopen("test.txt", "r");
if (file == NULL)
{
…
-
The current wasm implementation supports compiling to wasm with `wasm_bindgen`, which is meant to provide bindings for usage from JavaScript in the browser. This aligns with many of the concepts from …
-
Now we are loading always full icu for wasi. Add sharding like in https://github.com/dotnet/runtime/pull/80421.
Connected issues: https://github.com/dotnet/runtime/issues/82895
In the sharding app…
-
This was introduced in https://github.com/rust-lang/rust/pull/119616 (cc @rylev)
Currently, any crate using `std::os::wasi` stuff needs to add a `#![feature(wasip2)]` if it is to be compiled with `…
-
# Support WASI target
One of the popular and emerging use cases for wasm apps is deploying/executing them in environments other than browsers, for example in the desktops, in the servers on the edg…
-
Hi all,
I've been experimenting with tinygo having some fun prototyping a go wasm application hosted by wasmtime-java. Unfortunately, I hit a bug/missing feature when trying to access the memory: h…