3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

For many linux build, use aarch64 instead of arm64 (#7147)

This commit is contained in:
Steven Moy 2024-03-05 11:27:43 -08:00 committed by GitHub
parent 77a07bb791
commit 7694bca5f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

View file

@ -297,8 +297,8 @@ if 'bdist_wheel' in sys.argv and '--plat-name' not in sys.argv:
elif distos == 'glibc':
if arch == 'x64':
plat_name = 'manylinux2014_x86_64'
elif arch == 'arm64':
plat_name = 'manylinux2014_arm64'
elif arch == 'aarch64':
plat_name = 'manylinux2014_aarch64'
else:
plat_name = 'manylinux2014_i686'
elif distos == 'linux' and os_id == 'alpine':