Joel Dice
Joel Dice
To clarify the issue here: `componentize-py` does not currently have a way to stub out or omit `wasi:cli` imports required by the CPython interpreter and standard library, and since `wasmtime-py`...
BTW, there are two things missing in `wasmtime-py` that prevent it from running components with WASI 0.2 imports (whether by way of `componentize-py` or some other tool): - No compatible...
I went ahead and dug into this on the `componentize-py` side, adding a `--stub-wasi` feature which may be used to stub-out any WASI imports. This has the side effect of...
That could be a bug in the SDK that managed to stay hidden with earlier tinygo versions. I'm working on updating the Go SDK right now to add key-value support...
This should be addressed in https://github.com/fermyon/spin/pull/1165
Thanks, @konsoletyper! This issue appears to be fixed, although the pi digits test still fails after about 7660 iterations due to https://github.com/konsoletyper/teavm/issues/634.
Yes, in that particular test case, the only reason I used `bindgen!` was to ensure that it doesn't choke on wildcards. In a more realistic scenario, a world could contain...
Fair enough. Would you mind taking a look at the diff for https://github.com/bytecodealliance/wasmtime/pull/5925 and provide feedback on that, then? I can close this PR and reopen that one if desired....
@alexcrichton I've implemented code generation per your feedback. Please let me know what you think.
@alexcrichton Thanks for all your feedback. I think I've addressed everything so far.