2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-21 17:35:55 +01:00

Improve cuda detection logs

This commit is contained in:
Waf Project 2024-10-24 02:17:12 +08:00
parent 4356a0dfbe
commit 4d97d3a264

View File

@ -58,6 +58,6 @@ def find_cuda_libs(self):
pass pass
# this should not raise any error # this should not raise any error
self.check_cxx(header='cuda.h', lib='cuda', libpath=_libpath, includes=_includes) self.check_cxx(header='cuda.h', lib='cuda', libpath=_libpath, includes=_includes, msg='Checking for header cuda.h and library cuda')
self.check_cxx(header='cuda.h', lib='cudart', libpath=_libpath, includes=_includes) self.check_cxx(header='cuda.h', lib='cudart', libpath=_libpath, includes=_includes, msg='Checking for header cuda.h and library cudart')