我从https://computing.llnl.gov/tutorials/pthreads/网站上下载了下面的演示

#include <pthread.h>
#include <stdio.h>
#define NUM_THREADS     5

void *PrintHello(void *threadid)
{
   long tid;
   tid = (long)threadid;
   printf("Hello World! It's me, thread #%ld!\n", tid);
   pthread_exit(NULL);
}

int main (int argc, char *argv[])
{
   pthread_t threads[NUM_THREADS];
   int rc;
   long t;
   for(t=0; t<NUM_THREADS; t++){
      printf("In main: creating thread %ld\n", t);
      rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
      if (rc){
         printf("ERROR; return code from pthread_create() is %d\n", rc);
         exit(-1);
      }
   }
   pthread_exit(NULL);
}

但是当我在我的机器上编译它时(运行Ubuntu Linux 9.04),我得到以下错误:

corey@ubuntu:~/demo$ gcc -o term term.c
term.c: In function ‘main’:
term.c:23: warning: incompatible implicit declaration of built-in function ‘exit’
/tmp/cc8BMzwx.o: In function `main':
term.c:(.text+0x82): undefined reference to `pthread_create'
collect2: ld returned 1 exit status

这对我来说没有任何意义,因为头文件包括pthread.h,它应该有pthread_create函数。知道哪里出了问题吗?


当前回答

我相信在CMake中添加pthread的正确方法如下

find_package (Threads REQUIRED)

target_link_libraries(helloworld
    ${CMAKE_THREAD_LIBS_INIT}
)

其他回答

因为没有一个答案能完全满足我的需求(使用MSVS代码),我在这里添加了我使用这个IDE和CMAKE构建工具的经验。

第一步:确保在你的。cpp(或。hpp,如果需要)中包含:

#include <functional>

步骤2对于MSVSCode IDE用户: 将这一行添加到c_cpp_properties中。json文件:

"compilerArgs": ["-pthread"],

步骤2对于CMAKE构建工具用户: 将这一行添加到CMakeLists.txt中

set(CMAKE_CXX_FLAGS "-pthread")

注意:添加标记-lpthread(而不是-pthread)会导致链接失败。

对于Linux,正确的命令是:

gcc -o term term.c -lpthread

你必须把-lpthread放在compile命令之后,这个命令会告诉编译器使用pthread.h库执行程序。 GCC -l链接一个库文件。链接带库名且不带lib前缀的-l。

有时,如果您使用多个库,请检查库依赖关系。 (例如:-lpthread -lSDL…< = = >…-lSDL -lpthread)

检查手册页,您将得到。

使用-pthread编译和链接。

SYNOPSIS
       #include <pthread.h>

       int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
                          void *(*start_routine) (void *), void *arg);


       Compile and link with -pthread.
       ....

你只需要在properties中添加“pthread”=>C/ c++ build=>GCC c++ Linker=>Libraries=>顶部部分“Libraries(-l)”。 这是它