1
0
mirror of https://github.com/Zygo/bees.git synced 2025-10-13 20:53:37 +02:00

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 <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell
2025-09-12 13:32:07 -04:00
parent 5a36a2ce9c
commit 00efedfe75
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ all: $(BEES)
include ../makeflags
-include ../localconf
LIBS = -lcrucible -lpthread
LIBS = -lcrucible -lpthread -latomic
BEES_LDFLAGS = -L../lib $(LDFLAGS)
BEES_OBJS = \

View File

@@ -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