From 99ab755bb9b43122bd5eb4d4f1ef6cce12533d6e Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Sun, 4 Apr 2021 17:33:04 -0400 Subject: [PATCH] autobuild: don't assume tcc --- autobuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild b/autobuild index 1d4de35..5ae82dc 100755 --- a/autobuild +++ b/autobuild @@ -3,5 +3,5 @@ dir=${1:-\.} [ -d $dir/bin ] || mkdir $dir/bin find $dir -name '*.c' -not -iwholename '*cache*' | while read i; do - tcc -o bin/$(basename "$i" .c) "$i" + ${CC:-cc} -o bin/$(basename "$i" .c) "$i" done -- 2.39.2