summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild/x1113
1 files changed, 11 insertions, 2 deletions
diff --git a/build/x11 b/build/x11
index 7489e93..cae1518 100755
--- a/build/x11
+++ b/build/x11
@@ -1,8 +1,16 @@
#!/bin/sh -e
+CC=${CC:-musl-gcc}
+STATIC=${STATIC:-"-static"}
+CFLAGS=" \
+ -std=c89 \
+ -Wall -Wextra -Wno-comment \
+ -ggdb -Og \
+"
+
bench()
{
- if [ x = "x$(which time)" ]; then
+ if [ x = "x$(which time 2>/dev/null)" ]; then
$@
echo "time not installed"
else
@@ -10,5 +18,6 @@ bench()
fi
}
->&2 bench cc -std=c89 -Wall -Wextra -Wno-comment sources/main.c -static -o artifacts/xip-8
+mkdir -p artifacts
+>&2 bench $CC $CFLAGS sources/main.c $STATIC -o artifacts/xip-8
>&2 echo "------------------------------------------------\n"