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

Fix <runtime-debugging> not being encoded for clang-win (as identified in #586) (#605)

This commit is contained in:
Peter Dimov
2020-05-16 01:43:49 +03:00
committed by GitHub
parent d9efdb9fe2
commit ac44902f4e

View File

@@ -1028,7 +1028,8 @@ local rule runtime-tag ( name : type ? : property-set )
# known to care about runtime debugging.
if ( <toolset>msvc in $(properties) ) ||
( <stdlib>stlport in $(properties) ) ||
( <toolset-intel:platform>win in $(properties) )
( <toolset-intel:platform>win in $(properties) ) ||
( <toolset-clang:platform>win in $(properties) )
{
if <runtime-debugging>on in $(properties) { tag += g ; }
}