We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbb7246 commit b43bad7Copy full SHA for b43bad7
easybuild/tools/systemtools.py
@@ -943,6 +943,8 @@ def get_glibc_version():
943
944
if os_type == LINUX:
945
glibc_ver_str = get_tool_version('ldd')
946
+ # note: get_tool_version replaces newlines with ';',
947
+ # hence the use of ';' below after the expected glibc version
948
glibc_ver_regex = re.compile(r"^ldd \(.+\) (\d[\d.]+);")
949
res = glibc_ver_regex.search(glibc_ver_str)
950
0 commit comments