Ubuntu使用多线程cmake时出现undefined reference to `pthread_create'

Posted excellentlhw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu使用多线程cmake时出现undefined reference to `pthread_create'相关的知识,希望对你有一定的参考价值。

原因是ubuntu需要查找Threads第三方库,不能直接使用,因此,在cmakelists.txt文件中添加以下两行代码就ok

find_package(Threads)
target_link_libraries(HELLO ${CMAKE_THREAD_LIBS_INIT})
 

以上是关于Ubuntu使用多线程cmake时出现undefined reference to `pthread_create'的主要内容,如果未能解决你的问题,请参考以下文章

在Ubuntu中使用qt编opencv的程序时出现这怎么办啊?

将 std::filesystem 添加到 CMake 项目时出现问题

构建包时出现 Cmake 错误

尝试使用任何 CUDA 功能时出现分段错误

从源代码安装 qiskit-aer 时出现 CMake 错误

在 Ubuntu 16.04 上安装 Cilk 时出现问题