From: Zygo Blaxell Date: Fri, 12 Sep 2025 17:32:07 +0000 (-0400) Subject: Makefile: armv6l does not have builtin atomics, needs -latomic X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00efedfe75c2f6280da6c8fed172c0b690f083d9;p=bees Makefile: armv6l does not have builtin atomics, needs -latomic Mad props for running bees on an architecture so ancient that it doesn't even have floating point. Signed-off-by: Zygo Blaxell --- diff --git a/src/Makefile b/src/Makefile index ae442e42..0945bc25 100644 --- a/src/Makefile +++ b/src/Makefile @@ -5,7 +5,7 @@ all: $(BEES) include ../makeflags -include ../localconf -LIBS = -lcrucible -lpthread +LIBS = -lcrucible -lpthread -latomic BEES_LDFLAGS = -L../lib $(LDFLAGS) BEES_OBJS = \ diff --git a/test/Makefile b/test/Makefile index e8b8194e..8e1d2458 100644 --- a/test/Makefile +++ b/test/Makefile @@ -19,7 +19,7 @@ FORCE: include ../makeflags -include ../localconf -LIBS = -lcrucible -lpthread +LIBS = -lcrucible -lpthread -latomic BEES_LDFLAGS = -L../lib $(LDFLAGS) %.dep: %.cc tests.h Makefile