From df9f9296e3b1eaed41cc0bbc4cf0e5b935d321ed Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 24 Feb 2017 00:16:05 -0800 Subject: [PATCH] attempt to fix pthreat linking error replacing -lpthread by -pthread --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 4fae769d3..30b2a04a3 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -54,7 +54,7 @@ MULTITHREAD_LD = else EXT = MULTITHREAD_CPP = -DZSTD_MULTITHREAD -MULTITHREAD_LD = -lpthread +MULTITHREAD_LD = -pthread endif MULTITHREAD = $(MULTITHREAD_CPP) $(MULTITHREAD_LD) -- 2.47.2