我从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
功能。任何想法出了什么问题?
答案 0 :(得分:610)
到目前为止,这个问题的答案都是不正确的 对于Linux,正确的命令是:
gcc -pthread -o term term.c
通常,库应该在命令行上跟踪源和对象,-lpthread
不是“选项”,它是库规范。在仅安装了libpthread.a
的系统上,
gcc -lpthread ...
将无法链接。
答案 1 :(得分:34)
properties-&gt; c / c ++ Build-&gt; setting-&gt; GCC C ++链接器 - >顶部的库添加“pthread”
答案 2 :(得分:14)
实际上,如果你继续阅读下面的教程,它会给出几个用于pthreads代码的编译命令的例子,如下表所示:
https://computing.llnl.gov/tutorials/pthreads/#Compiling
答案 3 :(得分:11)
从Linux终端运行,对我有用的是使用以下命令进行编译(假设我要编译的c文件称为test.c):
gcc -o test test.c -pthread
希望对您有所帮助!
答案 4 :(得分:6)
像这样编译:gcc demo.c -o demo -pthread
答案 5 :(得分:4)
您需要使用选项-lpthread
和gcc。
答案 6 :(得分:4)
如果您使用的是cmake,则可以使用:
add_compile_options(-pthread)
或
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
答案 7 :(得分:3)
你只需要在proprieties中添加“pthread”=&gt; C / C ++ build =&gt; GCC C ++ Linker =&gt; Libraries =&gt;顶部“图书馆(-l)”。 多数民众赞成
答案 8 :(得分:3)
对于Linux,正确的命令是:
gcc -o term term.c -lpthread
您必须在编译命令之后放置-lpthread,此命令将告诉编译器使用pthread.h执行程序。gcc -l与库文件链接。-l具有库名的链接,但不带lib前缀
答案 9 :(得分:3)
由于没有一个答案完全满足我的需求(使用 MSVS 代码),我在这里也添加了我在此 IDE 和 CMAKE 构建工具方面的经验。
第 1 步:确保在您的 .cpp(或 .hpp,如果需要)中包含:
<div class="big-item" data-sly-list="${features.list}">
<sly data-sly-test="${ itemList.first || itemList.count == 5 || itemList.count == 9 || itemList.count == 13 || itemList.count == 17 }">
<div class="small-item-wrapper>
<div class="additional-div">
</sly>
<div class="small-item">
<div>${item.somecontent}</div>
</div>
<sly data-sly-test="${ itemList.last || itemList.count == "4 || itemList.count == 8 || itemList.count == 12 || itemList.count == 16 }">
</div>
</div>
</sly>
</div>
步骤 2 对于 MSVSCode IDE 用户: 将此行添加到您的 c_cpp_properties.json 文件:
#include <functional>
第 2 步对于 CMAKE 构建工具用户: 将此行添加到您的 CMakeLists.txt
"compilerArgs": ["-pthread"],
注意:添加标志 -lpthread(而不是 -pthread)会导致链接失败。
答案 10 :(得分:2)
我相信在pthread
中添加CMake
的正确方法是使用以下
find_package (Threads REQUIRED)
target_link_libraries(helloworld
${CMAKE_THREAD_LIBS_INIT}
)
答案 11 :(得分:0)
在Anjuta中,转到Build菜单,然后选择Configure Project。 在“配置选项”框中,添加:
LDFLAGS='-lpthread'
希望它也会帮助某人......
答案 12 :(得分:0)
有时,如果您使用多个库,请检查库依赖项。 (例如-lpthread -lSDL ...&lt; ==&gt; ... -lSDL -lpthread)
答案 13 :(得分:0)
查看手册页,您将获得
。编译并与-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.
....
答案 14 :(得分:0)
在Visual Studio 2019中,在以下项目的属性页中指定-pthread
:
链接器->命令行->其他选项
在文本框中输入-pthread
。