在编译陈硕github上面的代码时,遇到了链接错误:
…/Thread.o: In function `(anonymous namespace)::ThreadNameInitializer::ThreadNameInitializer()':
Thread.cpp:(.text+0x5f): undefined reference to pthread_atfork' ../Thread.o: In function muduo::Thread::~Thread()‘:
Thread.cpp:(.text+0x3f9): undefined reference to `pthread_detach’
…/Thread.o: In function `muduo::Thread::start()‘:
Thread.cpp:(.text+0x50e): undefined reference to `pthread_create’
…/Thread.o: In function `muduo::Thread::join()‘:
Thread.cpp:(.text+0x5ce): undefined reference to `pthread_join’
collect2: error: ld returned 1 exit status
在编译时已经加了-lpthread,还是有这个问题。
pthread_atfork是POSIX标准,在编译时要加上-pthread
-lpthread是老版本的gcc编译器用的,在新版本中应该用-pthread取代-lpthread
另外
如果你在编写的时候,用到了多线程的库,那么也需要在编译链接的时候添加指定参数,告诉编译器,让它去加载对应的三方库。
这也就说明,其实在低版本的编译器中,多线程库是不在其中默认库中的。
另外记得放对位置: