问题描述
/usr/bin/ld: /tmp/ccVz9LdA.o: in function `main':
test.c:(.text+0xec): undefined reference to `pthread_create'
/usr/bin/ld: test.c:(.text+0x11b): undefined reference to `pthread_join'
collect2: 错误:ld 返回 1
解决方法:
加上-lpthread
参数即可!
来源:CSDN
作者:、moddemod
链接:https://blog.csdn.net/weixin_43833642/article/details/103844253