Skip to content

Commit 492e0b4

Browse files
chore: Pin glibc version to 2.41 temporarily
1 parent ea43e7c commit 492e0b4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/update-deps.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,11 @@ def get_latest_gcc_tar():
6666

6767

6868
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
69+
# Pin glibc version to 2.41 temporarily
70+
return "2.41", "https://ftp.gnu.org/gnu/glibc/glibc-2.41.tar.xz"
71+
# 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
7274

7375

7476
def get_latest_gmp_tar():

0 commit comments

Comments
 (0)