2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-20 14:42:14 +00:00

Recognize vc8 for common variant tags.

[SVN r24173]
This commit is contained in:
Rene Rivera
2004-07-30 01:26:44 +00:00
parent d8f4d10ad8
commit 393c4f75e8

View File

@@ -2620,6 +2620,15 @@ rule common-variant-tag ( toolset variant : properties * )
# this is an stlport build requirement.
runtime-tag = [ difference $(runtime-tag) : n ] ;
}
case *vc8* :
{
toolset-tag += vc8 ;
toolset-tag += [ MATCH "vc8[.]([0123456789]*)" : $(toolset) ] ;
if <runtime-link>dynamic in $(properties) { thread-tag = mt ; }
# <stlport-iostream> is always on, no matter what we may think
# this is an stlport build requirement.
runtime-tag = [ difference $(runtime-tag) : n ] ;
}
case * :
toolset-tag += [ MATCH "^([^-]*)" : $(toolset) ] ;
}