Skip to content

Commit

Permalink
detect arm64 for manylinux setup
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Mar 5, 2024
1 parent 4050a43 commit 77a07bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@ def run(self):
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':
Expand Down

0 comments on commit 77a07bb

Please sign in to comment.