当前位置: 移动技术网 > IT编程>开发语言>C/C++ > undefined reference to 'pthread_create'问题解决

undefined reference to 'pthread_create'问题解决

2019年04月19日  | 移动技术网IT编程  | 我要评论

桑叶的药用价值,8a商业源码,陶思璇

由于是linux新手,所以现在才开始接触线程,照着gun/linux编程指南中的一个例子输入编译,结果出现如下错误:
undefined reference to 'pthread_create'
undefined reference to 'pthread_join'

问题原因:
    pthread 库不是 linux 默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。

问题解决:
    在编译中要加 -lpthread参数
    gcc thread.c -o thread -lpthread
    thread.c为你些的源文件,不要忘了加上头文件#include<pthread.h>

另外,使用这两个函数要加入#include <stdlib.h>


摘自 andy572633的专栏

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网