设为首页 加入收藏

TOP

undefined reference to 'pthread_create'问题解决
2015-01-22 22:55:22 来源: 作者: 【 】 浏览:111
Tags:undefined reference ' pthread_create' 问题 解决

由于是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

另外,使用这两个函数要加入#include


摘自 andy572633的专栏
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇linux里c语言调整的小命令 下一篇extern "C

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: