linux 线程操作问题undefined reference to 'pthread_create'的解决办法(cmake)

Posted jiu__

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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_executable
pthread
)

 

equivalent to

-pthread

 

以上是关于linux 线程操作问题undefined reference to 'pthread_create'的解决办法(cmake)的主要内容,如果未能解决你的问题,请参考以下文章

vue this.$refs 获取的值为undefined?

React报错之ref返回undefined或null

解决this.$refs.xxx 取值为undefined问题

Vue 父组件循环使用refs调用子组件方法出现undefined的问题

Vue 父组件循环使用refs调用子组件方法出现undefined的问题

无法修改其他线程中 ref 传递的值