在Linux中安装和构建Boost库

前端之家收集整理的这篇文章主要介绍了在Linux中安装和构建Boost库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在关注 Boost Getting Started文章.
我已经用Bjam安装了它,我可以看到包含文件和库文件(.a,.so).
#include <boost/regex.hpp>
#include <iostream>
#include <string>

int main()
{
    std::string line;
    boost::regex pat( "^Subject: (Re: |Aw: )*(.*)" );
}

如果我使用此命令构建上面的代码

g++ -I./boost/include -L./boost/lib -lboost_regex-gcc43-mt -static -o test_boost2 test_boost2.cc

我收到此错误

/tmp/ccJFVVid.o: In function `boost::basic_regex<char,boost::regex_traits<char,boost::cpp_regex_traits<char> > >::assign(char const*,char const*,unsigned int)':
    test_boost2.cc:(.text._ZN5boost11basic_regexIcNS_12regex_traitsIcNS_16cpp_regex_traitsIcEEEEE6assignEPKcS7_j[boost::basic_regex<char,unsigned int)]+0x22): undefined reference to `boost::basic_regex<char,boost::cpp_regex_traits<char> > >::do_assign(char const*,unsigned int)'
    collect2: ld returned 1 exit status

它在我的Windows机器下工作正常.

怎么了?

gcc版本4.3.2(Debian 4.3.2-1.1)

Linux xxxxxxxx 2.6.26-1-686#1 SMP Fri Mar 13 18:08:45 UTC 2009 i686 GNU / Linux

解决方法

sudo apt-get install libboost-regex-dev

不要在更智能的系统可以做得更好的源头安装.

要编译,只需使用

g++ -lboost_regex boost.cpp -o boost

获取可用软件包名称列表(更多部分的boost):

apt-cache search libboost | grep -- -dev

免责声明:我假设您使用Debian,因为这是您的GCC版本报告的内容.

原文链接:https://www.f2er.com/linux/394844.html

猜你在找的Linux相关文章