多线程编程时用到函数库 pthread.h ,但是该函数库不是linux默认的函数库,所以编译c文件时,需要在目标代码文件后加上 -lpthread参数. 1.未加上 -lpthread 编译时,报错如下: lyr@ubuntu:~/Desktop/lyr/test$ gcc multiTread.c /tmp/cc2opFxw.o:在函数‘thread_create’中: multiTread.c:(.text+0x153):对‘pthread_create’未定义的引用 multiTread…