2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-26 03:39:53 +01:00

Issue 1440

This commit is contained in:
Thomas Nagy 2014-04-27 19:06:26 +02:00
parent 955c09d037
commit d4ca0e8cdc
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64

View File

@ -172,6 +172,8 @@ def parse_flags(self, line, uselib_store, env=None, force_static=False, posix=No
appu('FRAMEWORK_' + uselib, [lst.pop(0)])
elif x.startswith('-F'):
appu('FRAMEWORKPATH_' + uselib, [x[2:]])
elif x == '-Wl,-rpath':
app('RPATH_' + uselib, lst.pop(0))
elif x.startswith('-Wl,-R'):
app('RPATH_' + uselib, x[6:])
elif x.startswith('-Wl,-rpath,'):