2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Improved warning message

Updated changelog


[SVN r36114]
This commit is contained in:
Dave Abrahams
2006-11-20 17:14:52 +00:00
parent df8a9d9f5c
commit c4a8e99594
2 changed files with 11 additions and 9 deletions

View File

@@ -219,14 +219,13 @@ if ! [ feature.values <toolset> ]
default-toolset = msvc ;
}
ECHO "warning: * No toolsets are configured." ;
ECHO "warning: * Configuring default toolset" \"$(default-toolset)\". ;
ECHO "warning: * If the default is wrong, you may not be able to" ;
ECHO "warning: build C++ programs." ;
ECHO "warning: * Use the \"--toolset=xxxxx\" option to override our guess." ;
ECHO "warning: * Please consult the documentation at" ;
ECHO "warning: http://boost.org/boost-build2/doc/html/bbv2/advanced/configuration.html" ;
ECHO "warning: for more configuration options" ;
ECHO "warning: No toolsets are configured." ;
ECHO "warning: Configuring default toolset" \"$(default-toolset)\". ;
ECHO "warning: If the default is wrong, you may not be able to build C++ programs." ;
ECHO "warning: Use the \"--toolset=xxxxx\" option to override our guess." ;
ECHO "warning: For more configuration options, please consult"
ECHO "warning: http://boost.org/boost-build2/doc/html/bbv2/advanced/configuration.html" ;
if ! $(ignore-config)
{

View File

@@ -7,12 +7,15 @@ Milestone 12 (in development)
Changes in this release:
- Support for autoconfiguration of toolset based on command-line
toolset=xxxx or --toolset=xxxx options, and for default toolset
configuration as a fallback.
- Support for precompiled headers for gcc toolset,
and improvements for msvc.
- Mechanism for removing inherited requirements.
- The 'make' rule support specifying usage-requirements.
- New 'project.extension' rule for declaring standalone
projects.
projects.
- New 'conditional' convenience rule.
- New 'path.glob-tree' rule.
- Inline targets are now marked explicit automatically.