mirror of
https://github.com/Zygo/bees.git
synced 2025-10-13 23:13:36 +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 ../makeflags
|
||||||
-include ../localconf
|
-include ../localconf
|
||||||
|
|
||||||
LIBS = -lcrucible -lpthread
|
LIBS = -lcrucible -lpthread -latomic
|
||||||
BEES_LDFLAGS = -L../lib $(LDFLAGS)
|
BEES_LDFLAGS = -L../lib $(LDFLAGS)
|
||||||
|
|
||||||
BEES_OBJS = \
|
BEES_OBJS = \
|
||||||
|
@@ -19,7 +19,7 @@ FORCE:
|
|||||||
include ../makeflags
|
include ../makeflags
|
||||||
-include ../localconf
|
-include ../localconf
|
||||||
|
|
||||||
LIBS = -lcrucible -lpthread
|
LIBS = -lcrucible -lpthread -latomic
|
||||||
BEES_LDFLAGS = -L../lib $(LDFLAGS)
|
BEES_LDFLAGS = -L../lib $(LDFLAGS)
|
||||||
|
|
||||||
%.dep: %.cc tests.h Makefile
|
%.dep: %.cc tests.h Makefile
|
||||||
|
Reference in New Issue
Block a user