2023-08-03 09:37:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
if [[ -x /usr/local/opt/llvm/bin/clang ]]; then
|
|
|
|
CLANG=/usr/local/opt/llvm/bin/clang
|
|
|
|
elif [[ -x /opt/homebrew/opt/llvm/bin/clang ]]; then
|
|
|
|
CLANG=/opt/homebrew/opt/llvm/bin/clang
|
|
|
|
else
|
|
|
|
echo "Could not find Homebrew clang; this script will probably not work."
|
|
|
|
CLANG=clang
|
|
|
|
fi
|
|
|
|
|
2023-08-09 11:06:32 +00:00
|
|
|
ORCA_DIR=../..
|
|
|
|
STDLIB_DIR=../../src/libc-shim
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-09 11:06:32 +00:00
|
|
|
python3 ../../scripts/embed_text_files.py --prefix=glsl_ --output src/glsl_shaders.h src/shaders/*.glsl
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
wasmFlags="--target=wasm32 \
|
|
|
|
--no-standard-libraries \
|
|
|
|
-fno-builtin \
|
|
|
|
-Wl,--no-entry \
|
|
|
|
-Wl,--export-dynamic \
|
|
|
|
-g \
|
|
|
|
-O2 \
|
|
|
|
-mbulk-memory \
|
|
|
|
-D__ORCA__ \
|
|
|
|
-I $STDLIB_DIR/include \
|
2023-08-09 11:06:32 +00:00
|
|
|
-I $ORCA_DIR/ext \
|
|
|
|
-I $ORCA_DIR/src"
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-09 11:06:32 +00:00
|
|
|
$CLANG $wasmFlags -o ./module.wasm ../../src/orca.c $STDLIB_DIR/src/*.c src/main.c
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
orca bundle --orca-dir ../.. --icon icon.png --name Fluid module.wasm
|