Boost.Python Tutorial
生活随笔
收集整理的這篇文章主要介紹了
Boost.Python Tutorial
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
參考:
http://www.boost.org/doc/libs/1_66_0/libs/python/doc/html/tutorial/index.html
http://blog.csdn.net/raby_gyl/article/details/70888387
https://www.cnblogs.com/bhlsheji/p/5373344.html
ubuntu 安裝支持庫:
sudo apt install libboost-python-dev python-dev
這個命令會自動安裝其它依賴的庫
編寫代碼:
#include <boost/python.hpp>char const* greet() {return "hello, world"; }BOOST_PYTHON_MODULE(hello_ext) {using namespace boost::python;def("greet", greet); }編譯:
?
?g++ hello_ext.cpp -o hello_ext.so -shared -fPIC -I/usr/include/python2.7 -lboost_python
使用:
?
:/tmp/demo$ python Python 2.7.11+ (default, Apr 17 2016, 14:00:29) [GCC 5.3.1 20160413] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import hello_ext >>> hello_ext.greet() 'hello, world' >>>?
?
?
?
?
?
?
總結
以上是生活随笔為你收集整理的Boost.Python Tutorial的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LINUX的“脏奶牛”
- 下一篇: 群晖开机自启动