首页 > 代码库 > linux 线程操作问题undefined reference to 'pthread_create'的解决办法(cmake)
linux 线程操作问题undefined reference to 'pthread_create'的解决办法(cmake)
问题原因:
pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a.
所以在使用pthread_create()创建线程时,需要链接该库。
1. 终端:问题解决:
在编译中要加 -pthread参数
gcc thread.c -o thread -pthread
2. qt的cmake配置: 可以修改CMakeLists.txt:
Here is the right answer:
ADD_EXECUTABLE(your_executable ${source_files})TARGET_LINK_LIBRARIES( your_executablepthread)
equivalent to
-pthread
linux 线程操作问题undefined reference to 'pthread_create'的解决办法(cmake)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。