mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 13:35:00 +00:00
When building Boost, stop on first error by default.
[SVN r57990]
This commit is contained in:
parent
7861cc2196
commit
842b01c1d6
2 changed files with 9 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue