vote up 1 vote down star

I'm ruinning on RHEL 5.1 and use gcc.

How I tell cmake to add -pthread to compilation and linking?

flag

47% accept rate

2 Answers

vote up 1 vote down

Should be as simple as adding

find_package(PTHREAD)

to your CMakeLists.txt file

Take a look at this link for more details

link|flag
Should I do something in case PTHREAD_FOUND? – idimba Oct 25 at 14:56
vote up 0 vote down

Here is the right anwser:

ADD_EXECUTABLE(your_executable ${source_files})

TARGET_LINK_LIBRARIES(
pthread
)

equivalent to

-lpthread
link|flag
This is equivalent. "-pthread" donates much more - at compilation it's -D_REENTRANT, at link time -lpthread. On some system at even can be more than this. – idimba Nov 1 at 8:15
SET(CMAKE_CXX_FLAGS_DEBUG "... -lpthread") SET(CMAKE_CXX_FLAGS_RELEASE "... -lpthread") – Nadir SOUALEM Nov 1 at 10:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.