gzurl
gzurl
+1 for this feature. When embedding Wasmtime in C (or C++), and enabling WASI extensions for a Wasm module, there is no way to capture stdout into a string. The...
+1 In my case, I'm running a container on top of an Apple M1, so I'm missing the `-linux-arm64` flavor.
More info: Building from sources from a linux-arm64 container (tried with `ubuntu:22.04` and `bitnami/minideb`) fails. In both containers, the error message is: ``` /usr/bin/cc -DGTEST_HAS_RTTI=0 -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/ubuntu/Home/Workspace/VMware/wasi-sdk/build/llvm/lib/Support/BLAKE3...
I just observed the same behavior described by @aerickson-clt above. And I only managed to make it work by changing `Bearer` to `Basic`. After some more investigations, this seems target-dependent:...
We at [Wasm Labs](https://wasmlabs.dev/) are looking into implementing proxy-wasm support for the Apache Web Server. We are glad to see there are renewed efforts around the specification. Looking forward to...
Hi, as part of the [WLR project](https://github.com/vmware-labs/webassembly-language-runtimes), we found a couple of use cases where aligned memory is needed for `mmap()`: SQLite and PHP (Zend parser). In both cases, reading...
@sunfishcode you are right, since this is a limited emulation of `mmap`, it won't improve performance as the real one. Regarding how it's used in SQLite and PHP, as you...
> What ubuntu version are you using in this build? I'm using 22.04 and it freezes when compiling wasm_runtime at step 292/294. Works on CentOS 7 tho. Weird.. @smittynewton to...
See https://docs.rs/wasmtime/latest/wasmtime/struct.Engine.html#method.precompile_module
Probably, a more convenient E2E test could be to run the "Hello Wasm!" example which doesn't require any runtime such as Python.