红联Linux门户
Linux帮助

线程编译的错误

发布时间:2010-12-03 21:26:16来源:红联作者:dam新
出现如下错误:
undefined reference to 'pthread_create'

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

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

共有 1 条评论

  1. dhwoecv 于 2010-12-04 08:48:41发表:

    补充知识