Revert "wasm-opt: use --strip-debug"

This reverts commit 85bdde2817.
This commit is contained in:
Frank Denis
2021-11-18 14:15:02 +01:00
parent 13144d11c1
commit 5df53ce62b
+1 -1
View File
@@ -6,7 +6,7 @@ unset LDFLAGS
unset CFLAGS
if command -v wasm-opt >/dev/null; then
wasm-opt -O4 --strip-debug -o "${1}.tmp" "$1" && mv -f "${1}.tmp" "$1"
wasm-opt -O4 -o "${1}.tmp" "$1" && mv -f "${1}.tmp" "$1"
fi
if [ -z "$WASI_RUNTIME" ] || [ "$WASI_RUNTIME" = "wavm" ]; then