mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 11:51:20 +01:00
boost: added "s" to lib pattern, to link with static lib
This commit is contained in:
parent
b0330b0d5d
commit
ab108c002d
@ -220,6 +220,8 @@ def boost_get_libs(self, *k, **kw):
|
||||
t = []
|
||||
if kw.get('mt', False):
|
||||
t.append('mt')
|
||||
if kw.get('static', False):
|
||||
t.append('s')
|
||||
if kw.get('abi', None):
|
||||
t.append(kw['abi'])
|
||||
tags = t and '(-%s)+' % '-'.join(t) or ''
|
||||
|
Loading…
Reference in New Issue
Block a user