5-11.c:(.text+0x79):对‘pthread_create’未定义的引用 5-11.c:(.text+0xb3):对‘pthread_join’未定义的引用 collect2: 错误:ld 返回 1
时间: 2024-02-25 14:52:41 浏览: 80
C-program-under-Linux-system.zip_site:www.pudn.com
这个错误提示是在编译时出现的,提示链接器没有找到 pthread_create 和 pthread_join 函数的定义。这是因为在使用 pthread 库时,需要加上 -pthread 选项来告诉编译器链接 pthread 库。你可以尝试在编译命令中加上 -pthread 选项来解决这个问题,例如:
```
gcc -pthread -o 5-11 5-11.c
```
这样应该就能成功编译链接了。
阅读全文