gcc编译线程程序需带-lpthread选项(否则出错:undefined reference to `pthread_create')

程序中两处使用了pthread_create函数,包含了头文件#include

gcc xxx.c -o xxx

编译时出现以下错误:


分析:

用gcc编译使用了POSIX thread的程序时通常需要加额外的选项,以链接到库。

此处直接加上-lpthread选项。

gcc xxx.c -o xxx -lpthread

编译通过

你可能感兴趣的:(Linux)