summaryrefslogtreecommitdiff
path: root/bootstrap.bat
diff options
context:
space:
mode:
authorPeter Dimov <pdimov@pdimov.com>2017-12-01 18:10:14 +0200
committerPeter Dimov <pdimov@pdimov.com>2017-12-21 18:26:33 +0200
commite3378b1a245fd20f6a255635b1f6d70ee8f56277 (patch)
tree4909757b13115ce20ffb3749a6450621f973303f /bootstrap.bat
parente54af35cc30d20f73095ec3fb1c7fa734463d5fb (diff)
downloadboost-e3378b1a245fd20f6a255635b1f6d70ee8f56277.tar.gz
Record specified toolset in project-config.jam instead of msvc (#170)
* Record specified toolset in project-config.jam instead of msvc * Translate toolset names properly; remove outdated messages; set error code on failure
Diffstat (limited to 'bootstrap.bat')
-rw-r--r--bootstrap.bat30
1 files changed, 20 insertions, 10 deletions
diff --git a/bootstrap.bat b/bootstrap.bat
index 2995907f62..da93b55566 100644
--- a/bootstrap.bat
+++ b/bootstrap.bat
@@ -1,5 +1,7 @@
@ECHO OFF
+SETLOCAL
+
REM Copyright (C) 2009 Vladimir Prus
REM
REM Distributed under the Boost Software License, Version 1.0.
@@ -34,12 +36,24 @@ goto :bjam_failure
REM Ideally, we should obtain the toolset that build.bat has
REM guessed. However, it uses setlocal at the start and does not
REM export BOOST_JAM_TOOLSET, and I don't know how to do that
-REM properly. Default to msvc for now.
-set toolset=msvc
+REM properly. Default to msvc if not specified.
+
+SET TOOLSET=msvc
+
+IF "%1"=="gcc" SET TOOLSET=gcc
+
+IF "%1"=="vc71" SET TOOLSET=msvc : 7.1
+IF "%1"=="vc8" SET TOOLSET=msvc : 8.0
+IF "%1"=="vc9" SET TOOLSET=msvc : 9.0
+IF "%1"=="vc10" SET TOOLSET=msvc : 10.0
+IF "%1"=="vc11" SET TOOLSET=msvc : 11.0
+IF "%1"=="vc12" SET TOOLSET=msvc : 12.0
+IF "%1"=="vc14" SET TOOLSET=msvc : 14.0
+IF "%1"=="vc141" SET TOOLSET=msvc : 14.1
ECHO import option ; > project-config.jam
ECHO. >> project-config.jam
-ECHO using %toolset% ; >> project-config.jam
+ECHO using %TOOLSET% ; >> project-config.jam
ECHO. >> project-config.jam
ECHO option.set keep-going : false ; >> project-config.jam
ECHO. >> project-config.jam
@@ -60,6 +74,7 @@ ECHO http://boost.org/more/getting_started/windows.html
ECHO.
ECHO - Boost.Build documentation:
ECHO http://www.boost.org/build/doc/html/index.html
+ECHO.
goto :end
@@ -69,13 +84,8 @@ ECHO.
ECHO Failed to build Boost.Build engine.
ECHO Please consult bootstrap.log for further diagnostics.
ECHO.
-ECHO You can try to obtain a prebuilt binary from
-ECHO.
-ECHO http://sf.net/project/showfiles.php?group_id=7586^&package_id=72941
-ECHO.
-ECHO Also, you can file an issue at http://svn.boost.org
-ECHO Please attach bootstrap.log in that case.
-goto :end
+REM Set an error code to allow `bootstrap && b2`
+cmd /c exit /b 1 > nul
:end