From e3ab274abdf3beab32ce88d951e83aeb24685d5a Mon Sep 17 00:00:00 2001 From: wtfsck Date: Thu, 24 Feb 2022 18:30:16 +0100 Subject: [PATCH] Use prev pypy 7.3.7 since 7.3.8 requires GLIBC 2.14 --- src/rust/iced-x86-py/build-wheels.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/rust/iced-x86-py/build-wheels.sh b/src/rust/iced-x86-py/build-wheels.sh index f7e9a5385..2e731a86d 100755 --- a/src/rust/iced-x86-py/build-wheels.sh +++ b/src/rust/iced-x86-py/build-wheels.sh @@ -36,9 +36,10 @@ if [ "$pypy" = "y" ]; then echo "Downloading PyPy" arch=$(uname -m) if [ "$arch" = "x86_64" ]; then - curl https://downloads.python.org/pypy/pypy3.8-v7.3.8-linux64.tar.bz2 -o pypy3.8.tar.bz2 + # 7.3.8 requires GLIBC 2.14 but manylinux2010 only has 2.12 + curl https://downloads.python.org/pypy/pypy3.8-v7.3.7-linux64.tar.bz2 -o pypy3.8.tar.bz2 elif [ "$arch" = "aarch64" ]; then - curl https://downloads.python.org/pypy/pypy3.8-v7.3.8-aarch64.tar.bz2 -o pypy3.8.tar.bz2 + curl https://downloads.python.org/pypy/pypy3.8-v7.3.7-aarch64.tar.bz2 -o pypy3.8.tar.bz2 else echo "Non-supported arch: $arch" exit 1