undefined reference to `pthread_create'的错误。

晚上编译一个工程,TMD编译时总是报
thread.o: In function `create_thread':
thread.c:(.text+0x1ef): undefined reference to `pthread_create'
collect2: ld returned 1 exit status
make: *** [serverd] Error 1

的错误,可是makefile 里面明明已经加入了-lpthread的选项。在公司还可以正常通过的。一点没有修改就编译不过了......

不知道怎么回事,莫非是找不到库的路径,不应该啊!线程库的路径是默认的啊,网上找半天无果!!!

最后发现是链接的时候 把 *.o 放在了-lpthread之后了。把 *.o 放在链接库的前边就对了。

你可能感兴趣的:(【01】C/C++)