标签: c++ ubuntu pthreads
我得到了对pthread_create和pthread_join的未定义引用 我正在用g++ -lpthread threads.cpp编译我的代码 我已经检查了库,#include<pthread.h>是我程序的第一行。 我做错了什么?
g++ -lpthread threads.cpp
#include<pthread.h>
答案 0 :(得分:2)
您需要g++ -pthread ...,不需要l。
g++ -pthread ...
l