From 6f3a1b4fac4091168809b50a6b94142ba2a40a4f Mon Sep 17 00:00:00 2001 From: dweller Date: Wed, 26 Mar 2025 20:11:52 +0200 Subject: fix which and add flags to build/x11 --- build/x11 | 13 +++++++++++-- 1 file 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" -- cgit v1.2.3