mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 13:35:00 +00:00
Make bootstrap.bat work on 64-bit Windows
[SVN r57485]
This commit is contained in:
parent
41207000a0
commit
e6c78fc0eb
1 changed files with 11 additions and 2 deletions
|
@ -7,15 +7,24 @@ REM (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.t
|
|||
|
||||
ECHO Building Boost.Jam build engine
|
||||
if exist ".\tools\jam\src\bin.ntx86\bjam.exe" del tools\jam\src\bin.ntx86\bjam.exe
|
||||
if exist ".\tools\jam\src\bin.ntx86_64\bjam.exe" del tools\jam\src\bin.ntx86_64\bjam.exe
|
||||
cd tools\jam\src
|
||||
|
||||
call .\build.bat > ..\..\..\bjam.log
|
||||
@ECHO OFF
|
||||
cd ..\..\..
|
||||
|
||||
if not exist ".\tools\jam\src\bin.ntx86\bjam.exe" goto :bjam_failure
|
||||
if exist ".\tools\jam\src\bin.ntx86\bjam.exe" (
|
||||
copy .\tools\jam\src\bin.ntx86\bjam.exe . > nul
|
||||
goto :bjam_built)
|
||||
|
||||
copy .\tools\jam\src\bin.ntx86\bjam.exe . > nul
|
||||
if exist ".\tools\jam\src\bin.ntx86_64\bjam.exe" (
|
||||
copy .\tools\jam\src\bin.ntx86_64\bjam.exe . > nul
|
||||
goto :bjam_built)
|
||||
|
||||
goto :bjam_failure
|
||||
|
||||
:bjam_built
|
||||
|
||||
REM Ideally, we should obtain the toolset that build.bat has
|
||||
REM guessed. However, it uses setlocal at the start and does
|
||||
|
|
Loading…
Add table
Reference in a new issue