Is there anyway to have boost build (bjam/b2) show the default toolset and version that it will use?
Without explicitly specifying a toolset, there is some way it settles on a toolset and version such as gcc-4.8 or darwin-4.2.1.
One possible way could be putting something like this in a jamfile:
import notfile ;
import property-set ;
notfile print_toolset : @print_toolset_version ;
rule print_toolset_version ( t : : properties * )
{
local ps = [ property-set.create $(properties) ] ;
local toolset = [ $(ps).get <toolset> ] ;
echo Toolset is $(toolset) ;
local version = [ $(ps).get <toolset-$(toolset):version> ] ;
echo Toolset version is $(version) ;
}