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 9127da9 commit c663f7eCopy full SHA for c663f7e
juliacall/install.py
@@ -42,10 +42,18 @@ def get_arch():
42
arch = platform.machine().lower()
43
return arch_aliases.get(arch.lower(), arch)
44
45
+libc_aliases = {
46
+ 'glibc': 'gnu',
47
+}
48
+
49
+def get_libc():
50
+ libc = platform.libc_ver()[0].lower()
51
+ return libc_aliases.get(libc, libc)
52
53
def compatible_julia_versions(compat=None, stable=True, kind=None):
54
os = get_os()
55
arch = get_arch()
- libc, _ = platform.libc_ver()
56
+ libc = get_libc()
57
if libc == '' and os == 'linux':
58
warnings.warn('could not determine libc version - assuming glibc')
59
libc = 'gnu'
0 commit comments