2024-08-23 04:05:23 +00:00
|
|
|
mkdir -p build/clay \
|
|
|
|
&& clang \
|
2024-09-20 20:00:55 +00:00
|
|
|
-Wall \
|
2024-09-28 03:43:29 +00:00
|
|
|
-Werror \
|
2024-08-23 04:05:23 +00:00
|
|
|
-Os \
|
|
|
|
-DCLAY_WASM \
|
|
|
|
-mbulk-memory \
|
|
|
|
--target=wasm32 \
|
|
|
|
-nostdlib \
|
|
|
|
-Wl,--strip-all \
|
|
|
|
-Wl,--export-dynamic \
|
|
|
|
-Wl,--no-entry \
|
|
|
|
-Wl,--export=__heap_base \
|
|
|
|
-Wl,--export=ACTIVE_RENDERER_INDEX \
|
|
|
|
-Wl,--initial-memory=6553600 \
|
|
|
|
-o build/clay/index.wasm \
|
|
|
|
main.c \
|
|
|
|
&& cp index.html build/clay/index.html && cp -r fonts/ build/clay/fonts \
|
|
|
|
&& cp index.html build/clay/index.html && cp -r images/ build/clay/images
|