查看 pthread_create 的man page, 里面有一个例子,编译这个例子的时候出现如下错误:
<span style="font-size:14px;">undefined reference to 'pthread_attr_setstacksize'
undefined reference to 'pthread_create'
undefined reference to 'pthread_join'
</span>
google一下,有如下解法
问题原因:
pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。
问题解决:
在编译中要加 -lpthread参数
gcc thread.c -o thread -lpthread
thread.c为你些的源文件,不要忘了加上头文件#include<pthread.h>
Q1: 为什么gcc 能够通过pthread 识别到 libpthread.a 呢?
再次仔细回头看一下man page,发现里面其实说的很清楚了:
compile and link with -pthread
Q2: 试了一下发现确实可以,为什么连 -l 都不需要了呢,gcc添加链接库不是都需要吗?
这两个问题以后补上答案