1、第一步,先要准备boost库,编译库,需要编译python库,我使用python的环境是python2.7。我使用的boost 1.5.7版本。存放在目录为:/Volumes/data/code/c++/boost_1_57_0。boost的编译,网上有一大把。这里就不详细说了。
说明:如果你的mac机器 /usr/include头文件很少,你可以使用下面这个命令安装。
xcode-select --install
2、编写一个hello_world.cpp,代码如下:
#include <iostream>
#include <string>
#include <boost/python.hpp>
using namespace std;
using namespace boost::python;
void say()
{
cout<<"Hello World!"<<endl;
}
BOOST_PYTHON_MODULE(hello_world)
{
def("say", say);
}
3、编译,这个时候生成hello_world.so文件。
g++ -fpic -c -L/Volumes/data/code/c++/boost_1_57_0/ -I/usr/include/python2.7 hello_world.cpp
g++ -shared -L/usr/lib -L/Volumes/data/code/c++/boost_1_57_0/stage/lib -lpython2.7 -lboost_python -o hello_world.so hello_world.o
4、把/Volumes/data/code/c++/boost_1_57_0/stage/lib/libboostpython.dylib拷贝到hello_world.so同一个目录下。测试新开发的模块。如下:
fish:c++ fish$ python
Python 2.7.10 (default, Jul 14 2015, 19:46:27)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import hello_world
>>> hello_world.say()
Hello World!
>>>
>>> quit()
结束语:mac/linux使用boost.python库扩展python看上去比较简单,但由于对gcc编译命令不熟悉,很多不知道,因此摸索了很久。写这里给有需要的同学使用。
网友评论