]> git.sesse.net Git - stockfish/blobdiff - src/Makefile
Do not require -lpthread when linking in mingw
[stockfish] / src / Makefile
index b4ecee324fe9d716f2e0a249bfac35ef083492b5..a435066515d947e14d388058a053f6f3d1baa16b 100644 (file)
@@ -243,7 +243,12 @@ ifeq ($(os),osx)
 endif
 
 ### 3.3 General linker settings
-LDFLAGS = -lpthread $(EXTRALDFLAGS)
+LDFLAGS = $(EXTRALDFLAGS)
+
+### On mingw use Windows threads, otherwise POSIX
+ifneq ($(comp),mingw)
+       LDFLAGS += -lpthread
+endif
 
 ifeq ($(os),osx)
        LDFLAGS += -arch $(arch)