标签:
undefined reference to ‘pthread_create‘ 出现这个错误是因为编译默认不会链接进程库。
可以选择用gcc进行编译 加上-lpthread
比如:gcc example1.c -lpthread -o example1
当时对于一个习惯了IDE来编程的人来说,不能用codeblocks痛苦无比。
所以可以Project -> Build options -> Linker settings -> Link libraries ->Add
然后添加 /usr/lib 中的libpthread.so(其中gcc 在编译时默认使用动态库。*.a 为静态函数库, *.so 为动态链接库。于是将配置文件指向配置为libpthread.so,不能使用libpthread.a)。
标签:
原文地址:http://www.cnblogs.com/chenhuan001/p/4901409.html