Eclipse MinGW Boost 设置
副标题#e#
Boost作为C++的一个最要害的库, 是每一个C++编程人员需要利用的, 本文讲授如安在Eclipse+MinGW下设置boost库;
1. Eclipse安装CDT插件和MinGW
可以凭据如下链接完美设置; 地点: http://blog.csdn.net/caroline_wendy/article/details/17039847;
2. 下载boost
下载boost最新版本至MinGW的文件下, 并解压, 最新版本: http://www.boost.org/users/history/version_1_55_0.html
windows情况比linux难设置, 所以选择讲授windows版本;
3. 编译boost
由于boost有些库, 如regex(正则), 需要手动编译, 不能直接利用;
点击, 根目次下的"bootstrap.bat"文件, 会生成"bjam.exe", 文件, 最终编译出的库会生成在stage文件夹中;
假如直接双击bjam是生成的VS版本的库文件;
假如生成MinGW的GCC版本的库文件, 需要输入呼吁"bjam.exe –build-type=complete toolset=gcc stage"
如图, 已经编译竣事:
#p#副标题#e#
4. 项目设置boost库
添加系统情况变量Path, 使系统可以找到dll, "XXX\boost\stage\lib", XXX为详细路径; 注销或重启电脑;
主要包括两个位置, 一个是include目次, 一个lib目次, 详细位置, 如添加regex库, 如图:
5.测试代码:
#include <boost/regex.hpp> #include <iostream> #include <iterator> #include <algorithm> using namespace std; using namespace boost; int main() { string pattern("[^c]ei"); pattern = "[[:alpha:]]*" + pattern + "[[:alpha:]]*"; regex r(pattern); smatch results; string test_str = "receipt freind theif receive"; if(regex_search(test_str, results, r)) cout << results.str() << std::endl; }
作者:csdn博客 Mystra