我有两个错误 undefined reference to _imp__pthread_create
,undefined reference to _imp__pthread_join
在 Windows IDE 的 Dev C++ 中,我使用的是 dev c++ 5.4.1。为什么会出现这个错误?我该如何解决这个问题?有人可以解释一下吗?非常感谢您的宝贵时间!!
#include<iostream>
#include<pthread.h>
using namespace std;
void *uss_thread(void*){
cout<<"hello";
}
main()
{
pthread_t tid1;
pthread_create(&tid1, NULL, &uss_thread, NULL);
pthread_join(tid1,NULL);
}