Skip to content

Commit 67aebbd

Browse files
committedJun 17, 2015
use -pthread instead of -lpthread when compiling
And here is why: http://stackoverflow.com/a/23251828/2334407
1 parent e8da260 commit 67aebbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT_SHA = $(shell git rev-parse --short HEAD)
22
TARGET = brubeck
3-
LIBS = -lm -lpthread -lrt -lcrypto -ljansson
3+
LIBS = -lm -pthread -lrt -lcrypto -ljansson
44
CC = gcc
55
CXX = g++
66
CFLAGS = -g -Wall -O3 -Wno-strict-aliasing -Isrc -Ivendor/ck/include -DNDEBUG=1 -DGIT_SHA=\"$(GIT_SHA)\"

0 commit comments

Comments
 (0)
Please sign in to comment.