在学习网络编程的时候遇到如下问题,因为我调用了thread_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
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>
本文解答了在Linux环境下使用pthread库进行网络编程时遇到的undefined reference to 'pthread_create' 和 'pthread_join'错误。通过在编译中加入-lpthread参数并确保包含头文件,可以解决此问题。
501

被折叠的 条评论
为什么被折叠?



