undefined reference to symbol ‘pthread_create@@GLIBC_2.2.5‘

原因:linux下线程调用的问题
解决方法:在CmakeLists.txt文件中加入以下代码:

set(CMAKE_CXX_FLAGS -pthread)

你可能感兴趣的:(Ubuntu,ubuntu,linux)