Skip to content
Snippets Groups Projects
Commit ddb7e552 authored by David GEISSBUHLER's avatar David GEISSBUHLER
Browse files

allow aarch64

parent a2537592
No related branches found
No related tags found
1 merge request!179allow aarch64
Pipeline #44659 passed
...@@ -60,6 +60,8 @@ def conda_arch(): ...@@ -60,6 +60,8 @@ def conda_arch():
if platform.machine().lower() == "x86_64": if platform.machine().lower() == "x86_64":
r += "-64" r += "-64"
elif platform.machine().lower() == "aarch64":
r += "-aarch64"
else: else:
raise RuntimeError('Unsupported machine type "%s"' % platform.machine()) raise RuntimeError('Unsupported machine type "%s"' % platform.machine())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment