问题链接到boost_thread [英] Problem linking to boost_thread

查看:191
本文介绍了问题链接到boost_thread的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图用升压1.47上的Xubuntu与gcc4.6链接和glibc 2.13。到目前为止,我无法编译下面的简单程序,main.cpp中:

I'm trying to link with boost 1.47 on xubuntu with gcc4.6 and glibc 2.13. So far I can't compile the following simple program, main.cpp:

#include <cstdlib>
#include <boost/ref.hpp>
#include <boost/thread.hpp>
int main() {
    size_t n_threads = boost::thread::hardware_concurrency();
    return 0;
}

当我编译:

    g++ -lboost_thread -lboost_regex -o mc main.cpp -static -lpthread /usr/local/lib/libboost_regex.a /usr/local/lib/libboost_thread.a

我得到提振类似于下面的一堆错误的:

I get a bunch of errors from boost similar to the following:

/usr/local/lib/libboost_thread.a(thread.o): In function `_ZN5boost9call_onceIPFvvEEEvRNS_9once_flagET_.constprop.100':
thread.cpp:(.text+0x47): undefined reference to `pthread_mutex_lock'
thread.cpp:(.text+0x73): undefined reference to `pthread_cond_wait'
thread.cpp:(.text+0xb9): undefined reference to `pthread_mutex_unlock'
thread.cpp:(.text+0xc8): undefined reference to `pthread_key_create'
thread.cpp:(.text+0xd2): undefined reference to `pthread_mutex_lock'
thread.cpp:(.text+0xf5): undefined reference to `pthread_cond_broadcast'
thread.cpp:(.text+0x10e): undefined reference to `pthread_mutex_unlock'

和也:

/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2.o): In function `uw_init_context_1':
(.text+0x20bd): undefined reference to `pthread_once'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__register_frame_info_bases':
(.text+0x16d4): undefined reference to `pthread_mutex_lock'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__register_frame_info_table_bases':
(.text+0x179b): undefined reference to `pthread_mutex_lock'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__deregister_frame_info_bases':
(.text+0x183e): undefined reference to `pthread_mutex_lock'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__deregister_frame_info_bases':
(.text+0x18c6): undefined reference to `pthread_mutex_unlock'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `_Unwind_Find_FDE':
(.text+0x1976): undefined reference to `pthread_mutex_lock'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `_Unwind_Find_FDE':
(.text+0x19c7): undefined reference to `pthread_mutex_unlock'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__register_frame_info_bases':
(.text+0x16f3): undefined reference to `pthread_mutex_unlock'
/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/libgcc_eh.a(unwind-dw2-fde-glibc.o): In function `__register_frame_info_table_bases':
(.text+0x17ba): undefined reference to `pthread_mutex_unlock'
collect2: ld returned 1 exit status

会是什么造成这样的问题?
有我在这里提供了足够的信息?
处理这种任何建议是极大的AP preciated!

What would be causing a problem like this? Have I provided enough information here? Any advice for fixing this is greatly appreciated!

推荐答案

尝试将-lpthread是最后一个参数的链接。 看到这个链接

Try moving the "-lpthread" to be the last argument to the linker. See this link

这篇关于问题链接到boost_thread的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆