aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-15 11:05:41 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-15 11:05:41 -0400
commit2d81cd41e190f106645e905cf5ec356c30c5e1a8 (patch)
tree516c02934c48f6e77869e708211bbdad96e44f64 /Makefile
parent4a604a298c0cde9667c483e93106a209b4cd3055 (diff)
Bring back TCC support!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a9ccedc6..ec5c0c1a 100644
--- a/Makefile
+++ b/Makefile
@@ -90,7 +90,7 @@ test/results/%.tm.testresult: test/%.tm build/tomo
@mkdir -p test/results
@printf '\033[33;1;4m%s\033[m\n' $<
@set -o pipefail; \
- if ! VERBOSE=0 COLOR=1 LC_ALL=C CC=gcc ./build/tomo -O 1 $< 2>&1 | tee $@; then \
+ if ! VERBOSE=0 COLOR=1 LC_ALL=C ./build/tomo --c-compiler=$(CC) -O 1 $< 2>&1 | tee $@; then \
rm -f $@; \
false; \
fi