Commit f4996978 authored by Tim Dettmers's avatar Tim Dettmers
Browse files

Added missing check if LD_LIBRARY_PATH exists. #588

parent 6ec4f0c3
...@@ -63,6 +63,7 @@ def generate_bug_report_information(): ...@@ -63,6 +63,7 @@ def generate_bug_report_information():
print('') print('')
print_header("LD_LIBRARY CUDA PATHS") print_header("LD_LIBRARY CUDA PATHS")
if 'LD_LIBRARY_PATH' in os.environ:
lib_path = os.environ['LD_LIBRARY_PATH'].strip() lib_path = os.environ['LD_LIBRARY_PATH'].strip()
for path in set(lib_path.split(':')): for path in set(lib_path.split(':')):
try: try:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment