gcc编译出现undefined reference to ‘pthread_create‘

gcc编译出现undefined reference to ’pthread_create‘和 undefined reference to ’pthread_join‘
代码中已经有#include

解决方法

在编译命令中加上-lpthread

gcc -Wall test.c -o test

改为

gcc -Wall -lpthread test.c -o test

你可能感兴趣的:(报错处理,C,多线程编程,gcc)