You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is_x86: bool=platform.machine() in ("AMD64", "x86_64")
21
-
is_arm: bool=platform.machine() =="arm64"
21
+
is_arm: bool=platform.machine() in ("arm64", "aarch64")
22
22
system: str=platform.system()
23
23
24
24
ifis_x86andsystem=="Darwin":
@@ -30,9 +30,6 @@ def library_file_name() -> str:
30
30
elifis_armandsystem=="Linux":
31
31
return"aarch64-unknown-linux-gnu"
32
32
elifis_x86andsystem=="Windows":
33
-
# Either Windows or the Python runtime on Windows requires that DLLs
34
-
# have an extension of `.dll`. This is why this is the only dynamic
35
-
# library with an extension.
36
33
return"x86_64-pc-windows-gnu.dll"
37
34
else:
38
35
raiseNotImplemented(f"No implementation of the Radix Engine Toolkit is available on your platform. Information detected: is_x86: {is_x86}, is_arm: {is_arm}, os: {system}")
0 commit comments