最近在进行specfem3d程序的测试,在make时总是错误,提示“undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'”: 经国内国外多方查询及尝试,最终发现是makefile文件内容错误,现已解决,现将解决方法记录如下。(本人系统为ubuntu16.04) 在进行查询后得知,主要是makefile中的“flags”缺少“-pthread”,国外主要...
仔细想了想了一下,在程序中用到了C++11中的线程std::thread,个人猜测C++11在封装线程std::thread时应当是使用到了pthread,pthread不是linux下的默认的库,也就是在链接的时候,无法找到phread库中线程函数的入口地址,于是链接会失败。 解决方法: 最简单的就是,打开CMakeLists.txt ,在所有用到boost_thread 的后面...
undefined reference to 'pthread_create' undefined reference to 'pthread_join' 出现这中问题原因: pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。 问题解决: 在编译中要加 -lpthr...
undefined reference to symbol 'pthread_create@@GLIBC_2.2.5' /usr/bin/ld: /lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status [87/122] Compiling C++ object mu/mu.p/mu-cmd.cc.o ninja: build stopped: ...
/home/bin/ld: undefined reference to symbol 'pthread_condattr_setclock@@GLIBC_2.3.3' /lib64/libpthread.so.0: error adding symbols: DSO missing from command line 解决办法: 遇到如下错误: .cpp:146: undefined reference to `pthread_key_create' ...
dingxiaoliang33 changed the title ‘osgGA::GUIEventHandlerVisitor’ has not been declared undefined reference to symbol 'pthread_create@@GLIBC_2.1' Aug 29, 2016 Owner fireant commented Aug 30, 2016 • edited Change the last line of CMakeLists.txt to target_link_libraries(angkor freenect ...
/usr/bin/ld: /tmp/ccMz0hFd.o: undefined reference to symbol ‘pthread_condatt,在linux下,编写C++程序用到了线程库。由于pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a,所以在编译中要加-lpthread参数:g++xxxx.cpp-lpthread-opthread
gcc编译线程程序需带-lpthread选项(否则出错:undefined reference to `pthread_create') 2019-12-25 13:38 −程序中两处使用了pthread_create函数,包含了头文件#include <pthread.h>。 gcc xxx.c -o xxx 编译时出现以下错误: 分析: 用gcc编译使用了POSIX thread的程序时通常需要加额外的选项,以链... ...
最近在编写一个程序时(x64 Linux,Arm下没有这个问题),出现了undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'”,明明有设置-pthread(l60870里用到了这个库)。经过测试,有两种解决办法 1、任意一个代码里调用 pthread_create 2、将lpthread放到最后 ...