Changeset 5921


Ignore:
Timestamp:
Nov 6, 2008, 6:04:20 PM (16 years ago)
Author:
ole
Message:

Fixed CRC computation for Itanium 64 bit architecture.
All 769 tests now pass on the ANU ac

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/utilities/system_tools.py

    r5586 r5921  
    192192    x = crc32(string)
    193193       
    194     if os.name == 'posix' and os.uname()[4] == 'x86_64':
     194    if os.name == 'posix' and os.uname()[4] in ['x86_64', 'ia64']:
    195195        crcval = x - ((x & 0x80000000) << 1)
    196196    else:
Note: See TracChangeset for help on using the changeset viewer.