用MinGW编译Boost

9 篇文章 0 订阅
How to Build boost-1.47.0 with MinGW

1. Download
. Boost
http://www.boost.org/users/download
Or use TortoiseSVN: svn co http://svn.boost.org/svn/boost/trunk C:\prj\boost
. Python
http://www.python.org/ftp/python
. Graphviz
http://www.graphviz.org/Download_windows.php
. ICU (optional)
http://site.icu-project.org/download
Get icu4c-*-src.tgz/zip, or svn co http://source.icu-project.org/repos/icu/icu/trunk C:\prj\icu

2. Prepare
. Install Python to C:\Python, and add the directory to PATH.
. Set PYTHONPATH=C:\Python\Lib;C:\Python\Lib\site-packages
. Install Graphviz.
. Patch ICU source.
C:\prj\icu\source\config\mh_mingw:
-IMPORT_LIB_EXT = .lib
+IMPORT_LIB_EXT = .a
-DATA_STUBNAME = dt
+DATA_STUBNAME = data
-I18N_STUBNAME = in
+I18N_STUBNAME = i18n
. Compile and install ICU in a MinGW/MSYS shell.
cd /c
cd prj/icu/source
LANG=en_US
./configure --disable-renaming && make clean && make && make check && make install

3. Build and Install
C:
set LANG=en_US
set PATH=C:\MinGW\bin;C:\MinGW\msys\1.0\local\bin;C:\Python;%PATH%
set PYTHONPATH=C:\Python\Lib;C:\Python\Lib\site-packages
cd \prj\boost
bootstrap.bat mingw
bjam --show-libraries
mkdir \boost-build
bjam --debug-configuration --prefix=\boost --build-dir=\boost-build --layout=tagged -d+2 -j2 -sICU_PATH=C:\MinGW\msys\1.0\local toolset=gcc variant=debug,release optimization=space link=shared runtime-link=shared threading=multi address-model=32 install 2>&1 > \boost-build\build.log
. 不要安装到名字中有空格或汉字的目录,有些软件对它们支持不好,会导致问题。

4. Matters Need Attention
In order to use the compiled modules, you should define BOOST_ALL_DYN_LINK and BOOST_AUTO_LINK_TAGGED in boost\config\user.hpp, to be compatible with the above bjam command. Or you can define BOOST_LIB_DIAGNOSTIC to diagnose if you have a linker error like this:
> fatal error LNK1104: cannot open file 'libboost_thread-vc90-mt-gd-1_48.lib'

5. Reference
http://userguide.icu-project.org/design#TOC-ICU-Binary-Compatibility:-Using-ICU
http://www.boost.org/more/getting_started/windows.html#prepare-to-use-a-boost-library-binary
http://www.boost.org/boost-build2/doc/html/bbv2/overview/invocation.html

Last revised: Oct. 27, 2011
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
为了方便大家使用MinGW(GCC)+_boost.python,特意只做了三个dll,可以很方便地将c++代码转为python模块. libboost_python-mgw45-1_49.dll libboost_python-mgw45-d-1_49.dll python27.dll 这三个文件我已放在资源里面,大家可以下载. 下面说说使用方法: 第一步:编写一个hello_ext.cpp的c++源文件 #include <boost/python.hpp> // 第一行必须是#include <boost/python.hpp> // 否则会留下一点小问题 #include <vector> // 输出字符串 char const* greet() { return "hello, world"; } // 实现两个数字相加 int add(int x, int y) { return x + y; } // 打印vector的函数 void vprint() { std::vector<int>myvector; for (int i = 1; i <= 5; i++) { myvector.push_back(i); } std::vector<int>::iterator it; std::cout << "myvector contains:"; for (it = myvector.begin(); it < myvector.end(); it++) { std::cout << " " << *it; } std::cout << std::endl; } // 定义python模块的接口文件 BOOST_PYTHON_MODULE(hello_ext) { // hello_ext为导出python模块的名字 using namespace boost::python; def("greet", greet); // 导出函数greet def("add", add); // 导出函数add def("vprint", vprint); // 导出函数vprint } 将上面的文件一定要保存为utf-8的格式(使用记事本在保存的时候就可以选择),不推荐Ansi格式! 然后就可以使用下面的命令编译python模块了: g++ -o hello_ext.pyd hello_ext.cpp -shared libboost_python-mgw45-1_49.dll python27.dll 也可以使用如下的命令,编译debug版本 g++ -o hello_ext.pyd hello_ext.cpp -shared libboost_python-mgw45-d-1_49.dll python27.dll 运行上面的命令之前,请确保hello_ext.cpp,libboost_python-mgw45-1_49.dll,libboost_python-mgw45-d-1_49.dll和 python27.dll在同一个目录. hello_ext.pyd就是python中能直接使用的动态链接库,windows一般以dll为后缀,而python只承认pyd文件. 下面来测试一下: import hello_ext print hello_ext.greet() print hello_ext.add(1,3) hello_ext.vprint() 输出为: hello, world 4 myvector contains: 1 2 3 4 5 看,成功了! ============================================================================= 使用g++编译常见的问题就是找不到文件<boost/python.hpp>和pyconfig.h等文件. 这些文件其实在boost的目录下面和C:\Python27\include目录中. 为了使用方便,将整个\boost_1_49_0\boost\目录复制到MinGw的include目录下面; 将C:\Python27\include目录下的文件全部复制到MinGw的include目录下面即可. 如果不想复制,也可以给g++设置-L参数 -LC:\boost\include\boost_1_49_0\ 和-LC:\Python27\include, 不过每次都这样,还是麻烦,不如复制一下彻底解决! 在发布hello_ext.pyd的时候,由于是动态链接库,所以不要忘了libboost_python-mgw45-1_49.dll, libboost_python-mgw45-d-1_49.dll和 python27.dll也要一起发布!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值