From ac44902f4e48034379dd75324395255d2dd1293e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 16 May 2020 01:43:49 +0300 Subject: [PATCH] Fix not being encoded for clang-win (as identified in #586) (#605) --- src/tools/common.jam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/common.jam b/src/tools/common.jam index 005ac9c5d..d5b17f816 100644 --- a/src/tools/common.jam +++ b/src/tools/common.jam @@ -1028,7 +1028,8 @@ local rule runtime-tag ( name : type ? : property-set ) # known to care about runtime debugging. if ( msvc in $(properties) ) || ( stlport in $(properties) ) || - ( win in $(properties) ) + ( win in $(properties) ) || + ( win in $(properties) ) { if on in $(properties) { tag += g ; } }