pthread.h 的 undefined reference to `pthread_create'
Posted Jeremy 學習筆記
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pthread.h 的 undefined reference to `pthread_create'相关的知识,希望对你有一定的参考价值。
在编译中要加 -lpthread或-pthread参数(不同版本的gcc可能不一样,man gcc可以查阅对应参数)。
例如:在加了头文件#include <pthread.h>之后执行 pthread.c文件,需要使用如下命令:
gcc -lpthread -o thread thread.c
或
gcc -pthread -o thread thread.c
这种情况类似于<math.h>的使用,需在编译时加 -m 参数。
以上是关于pthread.h 的 undefined reference to `pthread_create'的主要内容,如果未能解决你的问题,请参考以下文章
vue this.$refs 获取的值为undefined?
解决this.$refs.xxx 取值为undefined问题
Vue mounted中使用$refs出现undefined的解决方法