2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-29 21:41:44 +01:00

boost: added "s" to lib pattern, to link with static lib

This commit is contained in:
Syl 2014-02-15 13:01:26 +01:00
parent b0330b0d5d
commit ab108c002d

View File

@ -220,6 +220,8 @@ def boost_get_libs(self, *k, **kw):
t = [] t = []
if kw.get('mt', False): if kw.get('mt', False):
t.append('mt') t.append('mt')
if kw.get('static', False):
t.append('s')
if kw.get('abi', None): if kw.get('abi', None):
t.append(kw['abi']) t.append(kw['abi'])
tags = t and '(-%s)+' % '-'.join(t) or '' tags = t and '(-%s)+' % '-'.join(t) or ''