epolloneshot_test.cpp:(.text+0x582): undefined reference to `pthread_create‘
Posted qq_34132502
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了epolloneshot_test.cpp:(.text+0x582): undefined reference to `pthread_create‘相关的知识,希望对你有一定的参考价值。
编译指令需要在尾部加上-lpthread
,如下:
g++ -o epolloneshot_test epolloneshot_test.cpp -lpthread
以上是关于epolloneshot_test.cpp:(.text+0x582): undefined reference to `pthread_create‘的主要内容,如果未能解决你的问题,请参考以下文章
如何求解:T(n) = T(n/2) + T(n/4) + T(n/8) + (n)