summaryrefslogtreecommitdiff
path: root/build.sh
blob: 79d0e2cb948a6e86ba260bc9f4e4cd1c77d8cf32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
printf 'graphics.c\n'
clang \
    --target=wasm32 \
    -O2 \
    -nostdlib \
    -Wl,--no-entry \
    -Wl,--export-all \
    -o graphics.wasm \
    graphics.c