Linux下C编程:undefined reference to ‘pthread_create’问题办理
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>
查察全套文章:http://www.bianceng.cn/Programming/C/201212/34807.htm