diff options
author | lloyd <[email protected]> | 2009-08-05 10:18:44 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-08-05 10:18:44 +0000 |
commit | e02788728515b46829c10b7e693b34d60356f565 (patch) | |
tree | a3dab6592c5f798da6ad7df0acce3f1d5abd3f76 /configure.py | |
parent | 02deddbbb6e542c38e5bd7531e2a172ad02bb9b2 (diff) |
is_64bit_arch: s390x is also 64 bit
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index c92850cda..339292fd2 100755 --- a/configure.py +++ b/configure.py @@ -1033,7 +1033,7 @@ def main(argv = None): if options.compiler == 'gcc': def is_64bit_arch(arch): - if arch == 'alpha' or arch.endswith('64'): + if arch.endswith('64') or arch in ['alpha', 's930x']: return True return False |