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

Fix clang-win name mangling

This commit is contained in:
Peter Dimov
2018-10-27 04:27:05 +03:00
parent ec79d7c8a0
commit ca9e2207ce

View File

@@ -918,6 +918,7 @@ local rule toolset-tag ( name : type ? : property-set )
{
case darwin : tag += clang-darwin ;
case linux : tag += clang ;
case win : tag += clangw ;
}
}
case como* : tag += como ;
@@ -975,7 +976,7 @@ local rule toolset-tag ( name : type ? : property-set )
}
# Ditto, from Clang 4
if $(tag) = clang && [ numbers.less 3 $(version[1]) ]
if $(tag) in clang clangw && [ numbers.less 3 $(version[1]) ]
{
version = $(version[1]) ;
}