Warning, /tools/build_options/unsupported/linux_ia32_ifort+mpi_cosmos is written in an unsupported language. File is not indexed.
view on githubraw file Latest commit d488add3 on 2010-03-22 15:27:21 UTC
f767bea365 Dimi*0001 #!/bin/bash
0002 #
0003 # D. Menemenlis
0004 #
0005 # for JPL's 1024-CPU Dell cluster called cosmos
0006
0007 FC=mpif90
0008 CC=mpicc
0009 DEFINES='-DALLOW_USE_MPI -DALWAYS_USE_MPI -D_BYTESWAPIO -DWORDLENGTH=1'
0010 LINK=mpif90
0011 CPP='cpp -traditional -P'
0012 INCLUDES='-I/opt/mpich/gm/intel8.0/include'
0013
0014 # Note that the -mp switch is for ieee "maintain precision" and is
0015 # roughly equivalent to -ieee
0016 if test "x$IEEE" = x ; then
75ee583239 Dimi*0017 FOPTIM='-O3 -fp -align'
f767bea365 Dimi*0018 FFLAGS='-132 -r8 -i4 -w95 -W0 -WB'
0019 else
0020 FFLAGS='-mp -132 -r8 -i4 -w95 -W0 -WB -CB'
0021 fi
0022
0023
0024