iwasm requires precompilation to get decent speed
This commit is contained in:
parent
4acf8befe0
commit
65d56b1077
@ -77,7 +77,12 @@ fi
|
||||
|
||||
if [ -z "$WASI_RUNTIME" ] || [ "$WASI_RUNTIME" = "iwasm" ]; then
|
||||
if iwasm | grep -qi wasi >/dev/null 2>&1; then
|
||||
iwasm "$1" && exit 0
|
||||
if wamrc --version; then
|
||||
wamrc -o "${1}.o" "$1" >/dev/null &&
|
||||
iwasm --dir=. "${1}.o" && exit 0
|
||||
else
|
||||
iwasm --dir=. "$1" && exit 0
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user