go_wasip1_wasm_exec 797 B

1234567891011121314151617181920212223
  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. case "$GOWASIRUNTIME" in
  6. "wasmedge")
  7. exec wasmedge --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
  8. ;;
  9. "wasmer")
  10. exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
  11. ;;
  12. "wazero")
  13. exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
  14. ;;
  15. "wasmtime" | "")
  16. exec wasmtime run --dir=/ --env PWD="$PWD" --env PATH="$PATH" -W max-wasm-stack=1048576 ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
  17. ;;
  18. *)
  19. echo "Unknown Go WASI runtime specified: $GOWASIRUNTIME"
  20. exit 1
  21. ;;
  22. esac