mirror of
https://github.com/Zygo/bees.git
synced 2025-10-13 18:23: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:
@@ -5,7 +5,7 @@ all: $(BEES)
|
||||
include ../makeflags
|
||||
-include ../localconf
|
||||
|
||||
LIBS = -lcrucible -lpthread
|
||||
LIBS = -lcrucible -lpthread -latomic
|
||||
BEES_LDFLAGS = -L../lib $(LDFLAGS)
|
||||
|
||||
BEES_OBJS = \
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user