2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/v2/bootstrap.bat
Steven Watanabe 0c61333246 Merge Boost.Build from the trunk.
[SVN r78204]
2012-04-26 03:35:55 +00:00

50 lines
1.0 KiB
Batchfile

@ECHO OFF
REM Copyright (C) 2009 Vladimir Prus
REM
REM Distributed under the Boost Software License, Version 1.0.
REM (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
ECHO Bootstrapping the build engine
if exist ".\engine\bin.ntx86\bjam.exe" del engine\bin.ntx86\bjam.exe
if exist ".\engine\bin.ntx86_64\bjam.exe" del engine\bin.ntx86_64\bjam.exe
cd engine
call .\build.bat %* > ..\bootstrap.log
@ECHO OFF
cd ..
if exist ".\engine\bin.ntx86\b2.exe" (
copy .\engine\bin.ntx86\b2.exe . > nul
copy .\engine\bin.ntx86\bjam.exe . > nul
goto :bjam_built)
if exist ".\engine\bin.ntx86_64\b2.exe" (
copy .\engine\bin.ntx86_64\b2.exe . > nul
copy .\engine\bin.ntx86_64\bjam.exe . > nul
goto :bjam_built)
goto :bjam_failure
:bjam_built
ECHO.
ECHO Bootstrapping is done. To build, run:
ECHO.
ECHO .\b2 --prefix=DIR install
ECHO.
goto :end
:bjam_failure
ECHO.
ECHO Failed to bootstrap the build engine
ECHO Please consult bootstrap.log for furter diagnostics.
ECHO.
goto :end
:end