Hiroshi Saito
Hiroshi Saito
`docker run --platform=linux/amd64 --rm -v$PWD:/app -w/app wasmedge/slim-runtime:0.13.5 wasmedge --dir .:. wasmedge_quickjs.wasm example_js/wasi_http_fetch.js WasmEdge Runtime` edit: edit2: The HEAD of the main branch ATM is https://github.com/second-state/wasmedge-quickjs/commit/ab181109404403e37a5ac9d3961c78d528ae91aa.
I built wasmedge_quickjs.wasm and it works with main HEAD of wasmedge_quickjs.wasm repo. `docker run --rm -v$PWD:/wasmedge-quickjs -w/wasmedge-quickjs -ti rust bash` ``` rustup target add wasm32-wasi apt-get update && apt-get install...
I think incompatibility of wasmedge-quickjs.wasm binary and wasmedge-quickjs/modules causes the error. Am I wrong?
You can't reproduce this? https://github.com/WasmEdge/docs/pull/236#issuecomment-2182552851 hmm... the docker image have only amd64 image. So I think it will be reproducible... https://hub.docker.com/r/wasmedge/slim-runtime/tags
> In your example, the wasm file doesn't seem to have changed. Where does it come from https://github.com/WasmEdge/docs/blob/78e37335f7c1b75223a5cc1d5b414fa5398d6ee6/docs/develop/javascript/hello_world.md?plain=1#L21
It is very annoying to do git clone to local for just suggesting a typo in a document... OK. I'll do it later. :-)
> You can use the GitHub website and edit the committer message to append the DCO statement directly. How do I do this? https://stackoverflow.com/a/10728453 Do you mean that recreate another...
On my apple silicon mac, a build with docker works for me. Give it a try. `docker run --rm -v$PWD:/wasmedge-quickjs -w/wasmedge-quickjs -ti rust bash` ``` rustup target add wasm32-wasi apt-get...
As first try, using latest version of wasmedge-go 0.13.4 with wasmedge 0.14.0. I got following error ``` # github.com/second-state/WasmEdge-go/wasmedge cgo-dwarf-inference:4:17: error: 'WasmEdge_ValType' defined as wrong kind of tag ``` I...
I'm trying to use wasmedge-quickjs with wasmedge-go. When I tried quickjs with wasmedge CLI 0.13, the fetch API is very slow or timed out, but it solved since I updated...