出错的内容是:
root@ubuntu:/mnt/hgfs/NotepadProgram/APPNet# gcc jincheng.c
/tmp/ccFCr5RZ.o: In function main': jincheng.c:(.text+0xa1): **undefined reference to
pthread_create’**
collect2: error: ld returned 1 exit status
解决方法是:
在编译的时候末尾加上-lpthread,即可编译通过
如下:
root@ubuntu:/mnt/hgfs/NotepadProgram/APPNet# gcc jincheng.c -lpthread
root@ubuntu:/mnt/hgfs/NotepadProgram/APPNet# ./a.out