Browse Source

Fix configure on x86

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
25eecd179b
  1. 2
      wscript

2
wscript

@ -21,7 +21,7 @@ if os.environ.has_key('JOBS'):
def canonical_cpu_type(arch):
m = {'i386':'ia32', 'x86_64':'x64', 'amd64':'x64'}
m = {'x86': 'ia32', 'i386':'ia32', 'x86_64':'x64', 'amd64':'x64'}
if arch in m: arch = m[arch]
if not arch in supported_archs:
raise Exception("supported architectures are "+', '.join(supported_archs)+\

Loading…
Cancel
Save