From 9b3975189f74440c6acab53577894aceef42d7e8 Mon Sep 17 00:00:00 2001 From: heck Date: Fri, 14 May 2021 16:18:47 +0200 Subject: [PATCH] Test: Build - add -lpthread --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 7f6045f..caaa0d8 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,7 +1,7 @@ include ../Makefile.conf LDFLAGS=-L../src $(ENGINE_LIB) -LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter +LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter -lpthread CXXFLAGS:=-I../src -DENGINE_TEST=$(ENGINE_TEST) $(CXXFLAGS) SRC=$(wildcard test_*.cc) TST=$(subst .cc,,$(SRC))