Lann

Results 393 comments of Lann

``` ../../../../usr/lib64/tinygo/lib/wasi-libc/sysroot/include/__struct_iovec.h:5:10: fatal: 'stddef.h' file not found ``` The most obvious interpretation of this is a missing package. From a quick search the only other one that makes sense to...

https://github.com/tinygo-org/tinygo/pull/3410 should fix the original error, though it revealed another issue with the SDK bindings as well so it isn't a complete fix.

https://github.com/fermyon/spin/pull/1114 _might_ have fixed the issue with tinygo 0.26.

This does look vaguely like the kind of bug I (thought I) fixed.

https://github.com/fermyon/spin/pull/982

There are a couple of ways that Spin could support gRPC: - via the normal HTTP trigger interface: this could probably work today, but the feasibility and difficulty of it...

Another open question here would be how to reference functions that aren't top-level exports, e.g. something like `wasi:cli/[email protected]::run()`, though hopefully we can have something a little nicer than that. Update:...

> Is there any update on this issue now that WASI preview 2 has been officially released? I think this just hasn't been a priority for anyone. WAVE has evolved...

Tracking for myself: next step is to update the top-level world linking: add a e.g. `add_root_to_linker_get_host`, revert the world `add_to_linker` impl to call child trait closure-form `add_to_linker`s directly (avoiding the...

@alexcrichton re: https://github.com/bytecodealliance/wasmtime/issues/8382#issuecomment-2072986390 (`?Sized` for `impl Host for &mut T`), this doesn't work for methods that return the type itself: ``` 27 | impl FooImports for &mut T { |...