We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6c3d71 commit 25eecd1Copy full SHA for 25eecd1
1 file changed
wscript
@@ -21,7 +21,7 @@ if os.environ.has_key('JOBS'):
21
22
23
def canonical_cpu_type(arch):
24
- m = {'i386':'ia32', 'x86_64':'x64', 'amd64':'x64'}
+ m = {'x86': 'ia32', 'i386':'ia32', 'x86_64':'x64', 'amd64':'x64'}
25
if arch in m: arch = m[arch]
26
if not arch in supported_archs:
27
raise Exception("supported architectures are "+', '.join(supported_archs)+\
0 commit comments