Skip to content

Commit a97eafd

Browse files
committed
Fix _sysconfig_architecture for win-amd64
1 parent a43ceb0 commit a97eafd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ def _syscmd_file(target, default=''):
715715
_sysconfig_architecture = frozendict({
716716
# platform: (arch, bits, linkage)
717717
'win32': ('x86', '32bit', 'WindowsPE'),
718-
'win-amd64': ('AMD64', '32bit', 'WindowsPE'),
718+
'win-amd64': ('AMD64', '64bit', 'WindowsPE'),
719719
'win-arm32': ('ARM', '32bit', 'WindowsPE'),
720720
'win-arm64': ('ARM64', '64bit', 'WindowsPE'),
721721
})

0 commit comments

Comments
 (0)