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 d53301b commit 7d58822Copy full SHA for 7d58822
lib/config.py
@@ -37,7 +37,7 @@
37
'x86_64':
38
{
39
'Linux': 'x64',
40
- 'Windows': 'ia32',
+ 'Windows': 'x64',
41
'Darwin': 'x64'
42
},
43
'x86':
lib/inputstreamhelper.py
@@ -118,6 +118,12 @@ def _inputstream_version(self):
118
def _arch(self):
119
"""Map together and return the system architecture."""
120
arch = platform.machine()
121
+ if arch == 'AMD64':
122
+ arch_bit = platform.architecture()[0]
123
+ if arch_bit == '32bit':
124
+ arch = 'x86'
125
+ elif arch_bit == '64bit':
126
+ arch = 'x86_64'
127
if arch in config.X86_MAP:
128
return config.X86_MAP[arch]
129
elif 'armv' in arch:
0 commit comments