Saturday, August 31, 2013

build boost python application in vs2012

Open visual studio developer terminal and then build boost from source:
>bootstrap.bat
>b2 --build-type=complete stage --toolset=msvc-11.0 address-model=32
>b2 --build-type=complete stage --toolset=msvc-11.0 address-model=64

or

>b2 --build-type=complete stage --toolset=msvc address-model=64

64 bit VS doesnt support inline assembly like __asm{int 3} ?

<project-config.jam>

import option ;
using msvc ;
option.set keep-going : false ;
using python : 3.3 ;

No comments: