Files
libsodium/test/default/wasi-test-wrapper.sh
T
Frank Denis 7993e35227 Try wasmer and lucet as alternatives to wasmtime
However:
- wasmer seems to have issues with signals, causing some tests to fail
- lucet's --dir option doesn't seem to work with relative paths

These are temporary limitations, that are likely to be fixed soon.
2019-04-22 23:57:00 +02:00

12 lines
332 B
Bash
Executable File

#! /bin/sh
if command -v wasmtime >/dev/null; then
wasmtime -o --dir=. "$1" && exit 0
fi
if command -v wasmer >/dev/null; then
wasmer run "$1" --dir=. && exit 0
fi
if command -v lucetc-wasi >/dev/null && command -v lucet-wasi >/dev/null; then
lucetc-wasi -o "${1}.so" --opt-level best "$1" && lucet-wasi "$1.so" && exit 0
fi