Skip to content
Snippets Groups Projects
Commit 31edc08c authored by Mark Charlebois's avatar Mark Charlebois
Browse files

Linux: added missing -pthread flag


LDFLAGS was missing -pthread

Signed-off-by: default avatarMark Charlebois <charlebm@gmail.com>
parent 2cd44a24
No related branches found
No related tags found
No related merge requests found
......@@ -193,7 +193,7 @@ ARCHWARNINGSXX = $(ARCHWARNINGS) \
# pull in *just* libm from the toolchain ... this is grody
LIBM := $(shell $(CC) $(ARCHCPUFLAGS) -print-file-name=libm.a)
#EXTRA_LIBS += $(LIBM)
EXTRA_LIBS += -lm -lrt
EXTRA_LIBS += -pthread -lm -lrt
# Flags we pass to the C compiler
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment