]> Cypherpunks.ru repositories - gostls13.git/blob - misc/wasm/go_wasip1_wasm_exec
misc/wasm: silence Wasmtime 14 CLI warning
[gostls13.git] / misc / wasm / go_wasip1_wasm_exec
1 #!/usr/bin/env bash
2 # Copyright 2023 The Go Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style
4 # license that can be found in the LICENSE file.
5
6 case "$GOWASIRUNTIME" in
7         "wasmedge")
8                 exec wasmedge --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
9                 ;;
10         "wasmer")
11                 exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
12                 ;;
13         "wazero")
14                 exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
15                 ;;
16         "wasmtime" | "")
17                 # TODO(go.dev/issue/63718): Switch to the new CLI offered in the major version 14 of Wasmtime.
18                 exec env WASMTIME_NEW_CLI=0 wasmtime run --dir=/ --env PWD="$PWD" --env PATH="$PATH" --max-wasm-stack 1048576 ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
19                 ;;
20         *)
21                 echo "Unknown Go WASI runtime specified: $GOWASIRUNTIME"
22                 exit 1
23                 ;;
24 esac