免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6651 | 回复: 5
打印 上一主题 下一主题

请问如何在linux上使用boost::thread [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-01-11 16:15 |只看该作者 |倒序浏览
我的BOOST已经在LINUX下测试了timer成功了。

用了以下测试程序 测试thread却发现不行


#include <iostream>

#include <string>

#include <boost/tokenizer.hpp>

#include <boost/thread/thread.hpp>

using namespace std;

using namespace boost;

void hello()

{

        cout < < "hello world" < < endl;

}

int main()

{

        thread d( &hello );

        d.join();

        return 0;

}


用了这个makefile文件

main : main.o

        g++ main.o -o main

main.o : main.cpp

        g++ -c main.cpp

clean :

        rm main *.o

编译是过了,但连接不过,是不是少了什么库文件?

main.cpp.text+0xad): undefined reference to `boost::thread::thread(boost::
function0 <void, std::allocator <boost::function_base> > const&'

main.cpp.text+0xc3): undefined reference to `boost::thread::join()'

main.cpp.text+0xf4): undefined reference to `boost::thread::~thread()'

main.cpp.text+0x10a): undefined reference to `boost::thread::~thread()'

collect2: ld returned 1 exit status

论坛徽章:
0
2 [报告]
发表于 2011-01-11 16:49 |只看该作者
回复 1# ruilinxiang


    兄弟,你没有连接boost的相关库啊。

论坛徽章:
0
3 [报告]
发表于 2011-01-11 21:20 |只看该作者
加上 -lboost_thread

论坛徽章:
0
4 [报告]
发表于 2011-01-11 21:38 |只看该作者
对对

论坛徽章:
0
5 [报告]
发表于 2011-01-12 12:42 |只看该作者
没有连接boost库吧

论坛徽章:
0
6 [报告]
发表于 2011-01-12 13:32 |只看该作者
undefined reference to `boost::thread::thread(boost::
function0 <void, std::allocator <boost::function_base> > const

函数没有定义,只是作了声明
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP