Skip to content

Commit e2ae786

Browse files
tanzislamglenfe
authored andcommitted
Allow bootstrapping with "borland" (Embarcadero)
Pass down user's toolset override to the `b2`-building script. This was (most likely erroneously) removed in 26232c8 along with the output redirection. If user provided toolset of "borland" for bootstrapping, prepare `project-config.jam` for the modern `embarcadero` toolset.
1 parent 7a34bb1 commit e2ae786

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bootstrap.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ECHO Building Boost.Build engine
1212
if exist ".\tools\build\src\engine\b2.exe" del tools\build\src\engine\b2.exe
1313
pushd tools\build\src\engine
1414

15-
call .\build.bat
15+
call .\build.bat %*
1616
@ECHO OFF
1717

1818
popd
@@ -34,7 +34,7 @@ SET TOOLSET=msvc
3434

3535
IF "%1"=="gcc" SET TOOLSET=gcc
3636
IF "%1"=="clang" SET TOOLSET=clang
37-
37+
IF "%1"=="borland" SET TOOLSET=embarcadero
3838
IF "%1"=="vc71" SET TOOLSET=msvc : 7.1
3939
IF "%1"=="vc8" SET TOOLSET=msvc : 8.0
4040
IF "%1"=="vc9" SET TOOLSET=msvc : 9.0

0 commit comments

Comments
 (0)