Changeset 1087
- Timestamp:
- Mar 16, 2005, 2:10:38 PM (20 years ago)
- Location:
- inundation/ga/storm_surge/pyvolution
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/compile.py
r756 r1087 198 198 if os.name == 'posix' and os.uname()[4] == 'x86_64': 199 199 #Extra flags for 64 bit architectures 200 #Second clause will always fail on Win32 because uname is UNIX specific 201 #but won't get past first clause 200 202 201 203 #FIXME: Which one? -
inundation/ga/storm_surge/pyvolution/domain.py
r1043 r1087 626 626 except: 627 627 import os 628 if os. uname()[4] == 'x86_64':628 if os.name == 'posix' and os.uname()[4] == 'x86_64': 629 629 pass 630 630 #Psyco isn't supported on 64 bit systems, but it doesn't matter -
inundation/ga/storm_surge/pyvolution/shallow_water.py
r1045 r1087 1624 1624 except: 1625 1625 import os 1626 if os. uname()[4] == 'x86_64':1626 if os.name == 'posix' and os.uname()[4] == 'x86_64': 1627 1627 pass 1628 1628 #Psyco isn't supported on 64 bit systems, but it doesn't matter -
inundation/ga/storm_surge/pyvolution/test_all.py
r1018 r1087 75 75 if __name__ == '__main__': 76 76 77 os.system('python compile.py') #Attempt to compile all extensions 77 execfile('compile.py') 78 #os.system('python compile.py') #Attempt to compile all extensions 78 79 79 80 #print regressionTest()
Note: See TracChangeset
for help on using the changeset viewer.