在Linux中安装和构建Boost库
发布时间:2020-12-13 17:00:33 所属栏目:Linux 来源:网络整理
导读:我正在关注 Boost Getting Started的文章. 我已经用Bjam安装了它,我可以看到包含文件和库文件(.a,.so). #include boost/regex.hpp#include iostream#include stringint main(){ std::string line; boost::regex pat( "^Subject: (Re: |Aw: )*(.*)" );} 如果
我正在关注
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版本报告的内容. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |