mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
detect arm64 for manylinux setup
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4050a43f2f
commit
77a07bb791
|
@ -297,6 +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'
|
||||
else:
|
||||
plat_name = 'manylinux2014_i686'
|
||||
elif distos == 'linux' and os_id == 'alpine':
|
||||
|
|
Loading…
Reference in a new issue