1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-09 12:03:49 -05:00

Added aarch64 for Linux in anaconda_architecture()

Added aarch64 for Linux in anaconda_architecture()
This commit is contained in:
Anton Petrov
2021-02-28 19:01:11 +03:00
committed by GitHub
parent dde9a31f2e
commit 2fd00096de

View File

@@ -1006,6 +1006,7 @@ anaconda_architecture() {
"Linux" ) "Linux" )
case "$(uname -m)" in case "$(uname -m)" in
"armv7l" ) echo "Linux-armv7l" ;; "armv7l" ) echo "Linux-armv7l" ;;
"aarch64 " ) echo "Linux-aarch64" ;;
"i386" | "i486" | "i586" | "i686" | "i786" ) echo "Linux-x86" ;; "i386" | "i486" | "i586" | "i686" | "i786" ) echo "Linux-x86" ;;
"ppc64le" ) echo "Linux-ppc64le" ;; "ppc64le" ) echo "Linux-ppc64le" ;;
"x86_64" ) echo "Linux-x86_64" ;; "x86_64" ) echo "Linux-x86_64" ;;