]> Cypherpunks.ru repositories - gostls13.git/blobdiff - misc/wasm/go_wasip1_wasm_exec
net: implement wasip1 FileListener and FileConn
[gostls13.git] / misc / wasm / go_wasip1_wasm_exec
index abcac8df36cb748cdec9300eef758d9878e960fa..dcec1c6392e16273218f695764282f923e87927f 100755 (executable)
@@ -11,10 +11,10 @@ case "$GOWASIRUNTIME" in
                exec wasmer run --dir=/ --env PWD="$PWD" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
                ;;
        "wasmtime")
-               exec wasmtime run --dir=/ --env PWD="$PWD" --max-wasm-stack 1048576 "$1" -- "${@:2}"
+               exec wasmtime run --dir=/ --env PWD="$PWD" --max-wasm-stack 1048576 ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
                ;;
        "wazero" | "")
-               exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero "$1" "${@:2}"
+               exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
                ;;
        *)
                echo "Unknown Go WASI runtime specified: $GOWASIRUNTIME"