标签:多线程 gcc libpthread.a
出现这种情况 要么函数名字写错 要么就是找不到定义函数的文件,在linux下面的多线程 pthread不是默认到库 需要自己链接下。
1. 可以在终端 编译: gcc pthread.c -lpthread -o pthread
2.可以在IDE 下面配置:
Setting -> Compiler and debugger -> Linker Setting
根据自己的库的位置:ubuntu 12.04位置
可解决!
codeblocks 多线程 pthread_create 函数未定义引用 解决办法
标签:多线程 gcc libpthread.a
原文地址:http://blog.csdn.net/xd_122/article/details/45362803