Changes between Version 1 and Version 2 of documentation/BuildingBoostPython

Show
Ignore:
Author:
lloydw (IP: 24.82.134.185)
Timestamp:
09/19/10 08:30:17 (7 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/BuildingBoostPython

    v1 v2  
    88 
    99{{{ 
    10 C:\development 
     10D:\development 
    1111  rocket 
    1212    Include 
    2626 
    2727Build a debug and release version of the python. Copy python27.dll and python27_d.dll into support/lib directory. 
     28 
     29== Build Boost::Python == 
     30 
     31Boost uses its own custom ''bjam'' build system. Download boost (1.44 at the time of writing) and a prebuilt copy of bjam.exe. Next we need to create a custom bjam-config.jam file that tells bjam where our copy of python is. This file needs to be placed in your home directory ('''echo %HOMEDRIVE%%HOMEPATH%''' in a command prompt will give you this path. Its ''C:\Users\<username>\'' on Windows Vista/7) 
     32{{{ 
     33using python : 2.7 : D:\\development\\support\\python\\pcbuild\\python ; 
     34using python : 2.7 : D:\\development\\support\\python\\pcbuild\\python_d 
     35  : # includes 
     36  : # libs                             
     37  : <python-debugging>on ; 
     38}}}