From 9f7c0786d88f4390e76e058911216988df537a4c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 1 May 2025 15:56:42 -0400 Subject: Don't install coroutines on arm64 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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; \ -- cgit v1.2.3