mirror of
https://github.com/boostorg/boost.git
synced 2025-04-11 15:42:58 +00:00
Make bootstrap verbose about generating project-config.jam
Indicate what toolset is being pre-configured as default.
This commit is contained in:
parent
1bb209ed12
commit
8e89916f4a
2 changed files with 13 additions and 4 deletions
|
@ -51,7 +51,12 @@ 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.
|
||||
ECHO Generating Boost.Build configuration in project-config.jam for %TOOLSET%..."
|
||||
ECHO # Boost.Build Configuration > project-config.jam
|
||||
ECHO # Automatically generated by bootstrap.bat >> project-config.jam
|
||||
ECHO. >> project-config.jam
|
||||
ECHO import option ; >> project-config.jam
|
||||
ECHO. >> project-config.jam
|
||||
ECHO using %TOOLSET% ; >> project-config.jam
|
||||
ECHO. >> project-config.jam
|
||||
|
@ -62,7 +67,11 @@ ECHO.
|
|||
ECHO Bootstrapping is done. To build, run:
|
||||
ECHO.
|
||||
ECHO .\b2
|
||||
ECHO.
|
||||
ECHO.
|
||||
ECHO. To generate header files, run:
|
||||
ECHO.
|
||||
ECHO. .\b2 headers
|
||||
ECHO.
|
||||
ECHO To adjust configuration, edit 'project-config.jam'.
|
||||
ECHO Further information:
|
||||
ECHO.
|
||||
|
|
|
@ -328,7 +328,7 @@ if test -r "project-config.jam"; then
|
|||
fi
|
||||
|
||||
# Generate user-config.jam
|
||||
echo "Generating Boost.Build configuration in project-config.jam..."
|
||||
echo "Generating Boost.Build configuration in project-config.jam for $TOOLSET..."
|
||||
cat > project-config.jam <<EOF
|
||||
# Boost.Build Configuration
|
||||
# Automatically generated by bootstrap.sh
|
||||
|
@ -396,7 +396,7 @@ Bootstrapping is done. To build, run:
|
|||
To generate header files, run:
|
||||
|
||||
./b2 headers
|
||||
|
||||
|
||||
To adjust configuration, edit 'project-config.jam'.
|
||||
Further information:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue