mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 19:53:22 +08:00

[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
27 lines
471 B
Batchfile
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
|