红联Linux门户
Linux帮助

ubuntu下没有pthread库怎么办?

发布时间:2016-12-20 22:13:49来源:linux网站作者:当今明月
ubuntu下默认是没有pthread库的,即使在编译的时候加上 -lpthread 也不行。
 
man不到相关函数,使用下面的指令安装就可以了:
sudo apt-get install glibc-doc
sudo apt-get install manpages-posix-dev
 
然后在用man -k pthread_create就可以找到了。
 
ubuntu没有pthread库报undefined reference to 'pthread_create':http://www.linuxdiyf.com/linux/19978.html
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27081.html