We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19a7550 commit 4007ba4Copy full SHA for 4007ba4
1 file changed
mypyc/common.py
@@ -45,7 +45,7 @@
45
46
IS_32_BIT_PLATFORM: Final = int(SIZEOF_SIZE_T) == 4
47
48
-X86_64: Final = platform.machine() == "x86_64"
+X86_64: Final = platform.machine() in ("x86_64", "AMD64", "amd64")
49
50
PLATFORM_SIZE = 4 if IS_32_BIT_PLATFORM else 8
51
0 commit comments