2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 19:30:04 +01:00

Merge branch 'patch-1' into 'master'

added stubs/ to lib search paths

See merge request ita1024/waf!2213
This commit is contained in:
ita1024 2019-02-14 06:45:43 +00:00
commit f01354049d

View File

@ -50,7 +50,7 @@ def find_cuda_libs(self):
_includes = node and node.abspath() or '' _includes = node and node.abspath() or ''
_libpath = [] _libpath = []
for x in ('lib64', 'lib'): for x in ('lib64', 'lib64/stubs', 'lib', 'lib/stubs'):
try: try:
_libpath.append(d.find_node(x).abspath()) _libpath.append(d.find_node(x).abspath())
except: except: