标签:系统默认 join col linu 参数 create 线程 创建线程 cti
/tmp/ccM2tvqF.o: In function `main':查了老半天,以为代码的问题,最后才知道是因为pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a,所以在使用pthread_create创建线程时,在编译中要加-lpthread参数:gcc test_thread.c
-lpthread -o test_thread. 加上这个以后编译成功!
c++使用thread类时编译出错,对‘pthread_create’未定义的引用
标签:系统默认 join col linu 参数 create 线程 创建线程 cti
原文地址:http://blog.51cto.com/9409270/2070694