Anders Pitman
Anders Pitman
@alexcrichton starting to dig into this. Do you happen to know if the Android builds are limited to interpreter mode, or if the cranelift backend is expected to work?
Ha, I hit this and came up with almost the exact same repro (bevy 0.17.3):
> I wanted to use Web standard `Request` objects with Node's http server as well. After some digging I came across this https://github.com/honojs/node-server. It's a Node adaptor for the Hono...
> I studied several implementations of this pattern and developed a standalone lib that works with Server instances from `node:http` and `node:http2`. If anyone else wants to collaborate to publish...
> Here's a great package for it I found from Micheal Jackson on the Remix team in case anyone is interested: https://github.com/mjackson/remix-the-web/tree/main/packages/node-fetch-server This looks more fit-to-purpose. Also significantly smaller and...
Just wanted to mention that I made a naive attempt: ```bash GOOS=wasip1 GOARCH=wasm go build ``` That results in a number of errors. I also tried compiling with `tinygo build`,...
Not inactive, but I tend to add things in batches when I have time. In general, the more complicated a tool is compared to basic usage of ngrok or Cloudflare...
Thanks @alexcrichton. I've successfully tested wasmtime-py + ffmpeg-wasi on my Linux/x86_64 machine. The results are promising and I'd like to get this working on Android. Give that wasmtime already has...
One potential problem is that https://github.com/bytecodealliance/wasmtime-py/blob/main/ci/download-wasmtime.py doesn't appear to have support for `android`. Actually, I'm a bit surprised wasmtime has separate builds for Android. I believe generic Linux/musl builds generally...
@alexcrichton that helps, thanks. According to [PEP 738](https://peps.python.org/pep-0738/#sys), `sys.platform` should be returning `android`. I'll clone `wasmtime-py` and hack around on it locally and see what I can get working. @mhsmith...