Skip to content

Commit

Permalink
When building Boost, stop on first error by default.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.boost.org/svn/boost/trunk@57990 b8fc166d-592f-0410-95f2-cb63ce0dd405
  • Loading branch information
vladimir_prus committed Nov 28, 2009
1 parent 7e05356 commit 884add9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bootstrap.bat
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ REM export BOOST_JAM_TOOLSET, and I don't know how to do that
REM properly. Default to msvc for now.
set toolset=msvc

ECHO using %toolset% ; > project-config.jam
ECHO import option ; > project-config.jam
ECHO. >> 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

ECHO.
ECHO Bootstrapping is done. To build, run:
Expand Down
3 changes: 3 additions & 0 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,9 @@ option.set prefix : $PREFIX ;
option.set exec-prefix : $EPREFIX ;
option.set libdir : $LIBDIR ;
option.set includedir : $INCLUDEDIR ;
# Stop on first error
option.set keep-going : false ;
EOF

cat << EOF
Expand Down

0 comments on commit 884add9

Please sign in to comment.