aports/testing/wasm-micro-runtime/iwasm
2024-12-05 15:47:30 +00:00

9 lines
190 B
Bash

#!/bin/sh
if [ "${IWASM_VARIANT-}" ]; then
exec "/usr/bin/iwasm-$IWASM_VARIANT" "$@"
elif [ -f /usr/bin/iwasm-gc ]; then
exec /usr/bin/iwasm-gc "$@"
else
exec /usr/bin/iwasm-jit "$@"
fi