Back to home page

MITgcm

 
 

    


Warning, /tools/build_options/linux_alpha_g77 is written in an unsupported language. File is not indexed.

view on githubraw file Latest commit add29e06 on 2018-01-31 20:35:05 UTC
f10e3a8bdd Ed H*0001 #!/bin/bash
                0002 #
                0003 FC='g77'
7a8d0b199d Jean*0004 
                0005 DEFINES='-DWORDLENGTH=4 -DNML_EXTENDED_F77'
f10e3a8bdd Ed H*0006 CPP='cpp  -traditional -P'
7a8d0b199d Jean*0007 EXTENDED_SRC_FLAG='-ffixed-line-length-132'
                0008 GET_FC_VERSION="--version"
                0009 
816455066f Jean*0010 if test "x$IEEE" = x ; then     #- with optimisation:
7a8d0b199d Jean*0011     FFLAGS=' '
                0012     #FOPTIM='-ffast-math -fexpensive-optimizations -fomit-frame-pointer -O3'
471cf7f1ef Ed H*0013     FOPTIM='-O3 -funroll-loops'
816455066f Jean*0014 else                            #- no optimisation + IEEE :
                0015     #  For IEEE, use the "-ffloat-store" option
471cf7f1ef Ed H*0016     FFLAGS='-Wimplicit -Wunused -ffloat-store'
                0017     FOPTIM='-O0'
                0018 fi
                0019 
816455066f Jean*0020 if test "x$MPI" = xtrue ; then
                0021     INCLUDES='-I/usr/local/include'
                0022     LIBS='-L/usr/local/lib/LINUX/ch_p4/ -lfmpich -lmpich'
                0023 fi