aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-05-01 15:56:42 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-05-01 15:56:42 -0400
commit9f7c0786d88f4390e76e058911216988df537a4c (patch)
tree3ec6f0a743ae8f12036748d0d2ca1b1ee4e68f03
parent30b433ddcdcca0c0454ab98af5b1e22e5ce332c0 (diff)
Don't install coroutines on arm64
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 54cbe2b3..2464cce6 100644
--- a/Makefile
+++ b/Makefile
@@ -198,7 +198,7 @@ install-files: build/bin/tomo build/lib/$(LIB_FILE) build/lib/$(AR_FILE) check-u
install-libs: build/bin/tomo check-utilities
# Coroutines don't work with TCC for now
- if $(DEFAULT_C_COMPILER) --version | grep -q 'tcc version'; then \
+ if $(DEFAULT_C_COMPILER) --version | grep -q 'tcc version' || [ $$(uname -m) = "arm64" ]; then \
./local-tomo -qIL lib/patterns lib/time lib/commands lib/shell lib/random lib/base64 lib/pthreads lib/uuid lib/core; \
else \
./local-tomo -qIL lib/patterns lib/time lib/commands lib/shell lib/random lib/base64 lib/coroutines lib/pthreads lib/uuid lib/core; \