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 ea43e7c commit 492e0b4Copy full SHA for 492e0b4
scripts/update-deps.py
@@ -66,9 +66,11 @@ def get_latest_gcc_tar():
66
67
68
def get_latest_glibc_tar():
69
- url = 'https://ftp.gnu.org/gnu/glibc/'
70
- ver, tarname = get_latest(url, r'glibc-([0-9]+(:?\.[0-9]+)+).tar.xz')
71
- return ver, url + tarname
+ # Pin glibc version to 2.41 temporarily
+ return "2.41", "https://ftp.gnu.org/gnu/glibc/glibc-2.41.tar.xz"
+ # url = 'https://ftp.gnu.org/gnu/glibc/'
72
+ # ver, tarname = get_latest(url, r'glibc-([0-9]+(:?\.[0-9]+)+).tar.xz')
73
+ # return ver, url + tarname
74
75
76
def get_latest_gmp_tar():
0 commit comments