Changes between Version 2 and Version 3 of documentation/BuildingBoostPython

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

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/BuildingBoostPython

    v2 v3  
    3737  : <python-debugging>on ; 
    3838}}} 
     39 
     40Unfortunately the includes path above only supports one directory, but on PC python requires two include paths ''include'' and ''pc''. To get around this, we use the visual studio environment variables. 
     41 
     42{{{ 
     43D:\Development\support\boost\libs\python\build>set CL=/ID:\Development\support\python\include /ID:\Development\support\python\pc 
     44D:\Development\support\boost\libs\python\build>set LIB=D:\Development\support\python\pc\vs8.0 
     45}}} 
     46 
     47We then set bjam to work building us debug and release versions. 
     48 
     49{{{ 
     50D:\Development\support\boost\libs\python\build>bjam --toolset=msvc python-debugging=on variant=debug 
     51D:\Development\support\boost\libs\python\build>bjam --toolset=msvc variant=release 
     52}}} 
     53 
     54Copy the ''lib'' and ''dll'' files from the boost/bin.v2 folder to the ''support/lib'' folder 
     55 
     56You've now built all the required libraries and put them in the correct locations. RocketPython should now build correctly.