Skip to content

Commit 25eecd1

Browse files
committed
Fix configure on x86
1 parent a6c3d71 commit 25eecd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if os.environ.has_key('JOBS'):
2121

2222

2323
def canonical_cpu_type(arch):
24-
m = {'i386':'ia32', 'x86_64':'x64', 'amd64':'x64'}
24+
m = {'x86': 'ia32', 'i386':'ia32', 'x86_64':'x64', 'amd64':'x64'}
2525
if arch in m: arch = m[arch]
2626
if not arch in supported_archs:
2727
raise Exception("supported architectures are "+', '.join(supported_archs)+\

0 commit comments

Comments
 (0)