Skip to content

Commit

Permalink
Use prev pypy 7.3.7 since 7.3.8 requires GLIBC 2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed Feb 24, 2022
1 parent 92e39b2 commit e3ab274
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/rust/iced-x86-py/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e3ab274

Please sign in to comment.