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

Add MinGW tag from BBv1 (mgw) when the gcc flavor indicates it's the MinGW compiler.

[SVN r35715]
This commit is contained in:
Rene Rivera
2006-10-24 04:15:26 +00:00
parent abd8cdcc47
commit 349952599c

View File

@@ -674,7 +674,14 @@ local rule toolset-tag ( name : type ? : property-set )
case cw : tag += cw ;
case darwin* : tag += ;
case edg* : tag += edg ;
case gcc* : tag += gcc ;
case gcc* :
{
switch [ $(property-set).get <toolset-gcc:flavor> ]
{
case *mingw* : tag += mgw ;
case * : tag += gcc ;
}
}
case intel :
if [ $(property-set).get <toolset-intel:platform> ] = win
{