This will typically fail with a virtual memory limit on Linux because the Linux kernel ulimit -v limits virtual address size, including PROT_NONE pages that do not consume resources (at least, not the way Wasmtime is using them). Since such a configuration renders Wasm::Wasmtime unusable, we want to catch it here.
This will typically fail with a virtual memory limit on Linux because the Linux kernel
ulimit -v
limits virtual address size, includingPROT_NONE
pages that do not consume resources (at least, not the way Wasmtime is using them). Since such a configuration renders Wasm::Wasmtime unusable, we want to catch it here.https://github.com/perlwasm/Wasm/issues/22