]> Cypherpunks.ru repositories - gostls13.git/blob - misc/wasm/go_wasip1_wasm_exec
abcac8df36cb748cdec9300eef758d9878e960fa
[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" ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
9                 ;;
10         "wasmer")
11                 exec wasmer run --dir=/ --env PWD="$PWD" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
12                 ;;
13         "wasmtime")
14                 exec wasmtime run --dir=/ --env PWD="$PWD" --max-wasm-stack 1048576 "$1" -- "${@:2}"
15                 ;;
16         "wazero" | "")
17                 exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero "$1" "${@:2}"
18                 ;;
19         *)
20                 echo "Unknown Go WASI runtime specified: $GOWASIRUNTIME"
21                 exit 1
22                 ;;
23 esac