Revela-Games/microsoft-flight-simulator/scripts/compile_wasm.sh
2023-03-31 14:04:34 -04:00

12 lines
308 B
Bash

#stop on error
set -e
#generate wasm file
make clean
rm -f fshistory.wasm
make fshistory.wasm CC=clang LDFLAGS="--target=wasm32" CFLAGS="-Os --target=wasm32 -DFS4 -Werror -DUNSAFE_RAM -Wimplicit-fallthrough"
wasm-gc fshistory.wasm
wasm-strip fshistory.wasm
wasm2wat fshistory.wasm | grep 'import\|export'