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

no message

[SVN r24616]
This commit is contained in:
Rene Rivera
2004-08-20 12:32:31 +00:00
parent e2dece22ae
commit fc31c7b3d5

View File

@@ -2602,11 +2602,16 @@ rule common-variant-tag ( toolset variant : properties * )
case sunpro* : toolset-tag += sw ;
case tru64cxx* : toolset-tag += tru ;
case vacpp* : toolset-tag += xlc ;
case vc[678]* :
case vc[678][.]* :
{
toolset-tag += vc ;
toolset-tag += [ MATCH "vc([678])[.]([0123456789]*)" : $(toolset) ] ;
}
case vc[678]* :
{
toolset-tag += vc ;
toolset-tag += [ MATCH "vc([678])" : $(toolset) ] ;
}
case * :
toolset-tag += [ MATCH "^([^-]*)" : $(toolset) ] ;
}