From cc6dd2333708881f424b0a1aea5750ec0eca9d30 Mon Sep 17 00:00:00 2001 From: Luca Saiu Date: Thu, 8 Sep 2022 16:28:57 +0200 Subject: [PATCH] trivial build system fix * test/Makefile (LDLIBS): Link libraries in a different order, respecting dependencies. --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index c728263..2650e22 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,7 +1,7 @@ include ../Makefile.conf LDFLAGS:=-L../src $(LDFLAGS) -LDLIBS=-lstdc++ -lpEpEngine -lpEpCxx11 -lpEpAdapter -lPityTest11 -lpthread -ldl -lm +LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter -lpEpCxx11 -lPityTest11 -lpthread -ldl -lm CXXFLAGS:=-I../src -DENGINE_TEST=$(ENGINE_TEST) $(CXXFLAGS) # Test