(转)undefined reference to 'pthread_create'问题

undefined reference to 'pthread_create'问题解决

转者按:怪不得star在书上写了相关批注。看来,实践还是很关键的。

 

问题:
undefined reference to 'pthread_create'

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

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

 

原文:http://blog.chinaunix.net/u3/95416/showart_2102037.html

 
 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章