1. 程式人生 > >linux下用eclipse編譯c++的pthread多執行緒配置

linux下用eclipse編譯c++的pthread多執行緒配置

問題:eclipse使用pthread.h遇到“pthread_create”未定義的問題。
解決方法:
a.需要在編譯時新增-lpthread引數
$ g++ XXXXX.cpp -lpthread -o XXXXX.o
b.在eclipse中配置
project>properties>c/c++Build>GCC C++Linker>Libraries
在Libraries(-l)中新增pthread
在Libraries search path(-L)中新增crypto

WALDM