From: Yann Collet Date: Fri, 24 Feb 2017 08:16:05 +0000 (-0800) Subject: attempt to fix pthreat linking error X-Git-Tag: v1.1.4~1^2~43^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F566%2Fhead;p=thirdparty%2Fzstd.git attempt to fix pthreat linking error replacing -lpthread by -pthread --- 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)