- download latest boost-jam from http://sourceforge.net/projects/boost/files/
- Unzip
- 以Boost.Python的tutorial為例說明
- 在個人的檔案夾(C:\Document And Settings\User Name)下,產生檔案user-config.jam
- 檔案內容
#MSVC configuration
(特別注意路徑的打法)
using msvc : 9.0 ;
#Python configuration
using python : 2.6 : C:/Python ; - 至boost python tutorial資料夾 Ex. boost\libs\python\example\tutorial\
- 輸入bjam
- 若順利,則在boost\bin.v2下,會產生dll檔及lib檔
- 把.dll檔、.lib檔、以及test_ext.pyd放在同個資料夾,即可使用Python呼叫
2009年9月15日
Generate C++ Dll for Python
Using Boost.Python in Windows/Visual C++ 9.0
- 安裝Python
- 解壓縮Boost
- 設置目錄
- Visual Express->工具->選項->VC++目錄->顯示目錄選擇Include檔案
- 加入Boost路徑 Ex. D:\Programming\Tools\boost
- 加入Python Include檔路徑 Ex. C:\Python\include
- 加入程式庫檔
- 加入Python Library檔路徑 Ex. C:\Python\libs
- 加入Boost Compiler完成程式庫檔路徑 Ex: boost\bin.v2\libs\python\build\msvc-9.0\debug\threading\multi
- 重新建制,測試是否成功
訂閱:
文章 (Atom)