pykd/_boost_pykd_build.cmd
SND\air_max_cp 69da8abdc9 added: boost build command line script
[0.1.x] refactored: DbgPythonPath class
[0.1.x] added: FileExists function

[0.0.x] refactored: DbgPythonPath class 
[0.0.x] added: FileExists function

git-svn-id: https://pykd.svn.codeplex.com/svn@72409 9b283d60-5439-405e-af05-b73fd8c4d996
2011-12-16 16:03:39 +00:00

27 lines
471 B
Batchfile

::
:: Copy to boost root dir
::
call :ExecBjam 32
call :ExecBjam 64
pause
goto :EOF
:ExecBjam
set arch=%1
set stagedir=stage
if "%arch%"=="64" set stagedir=stage64
bjam.exe ^
-j 4 ^
--toolset=msvc-9.0 ^
release debug ^
threading=multi link=static runtime-link=shared ^
address-model=%arch% ^
--with-python --with-date_time --with-regex --with-thread ^
python=2.6 ^
--stagedir=%stagedir% ^
stage
goto :EOF