Back to home page

MITgcm

 
 

    


Warning, /tools/build_options/cygwin_ia32_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
a4cdb0c6f0 Ed H*0001 #!/bin/bash
                0002 #
                0003 #
                0004 
                0005 
                0006 FC=g77
                0007 DEFINES='-D_BYTESWAPIO -DWORDLENGTH=4'
                0008 CPP='cpp  -traditional -P'
                0009 NOOPTFLAGS='-O0'
                0010 
                0011 #  For IEEE, use the "-ffloat-store" option
                0012 if test "x$IEEE" = x ; then
                0013     FFLAGS='-Wimplicit -Wunused -Wuninitialized'
                0014     FOPTIM='-O3 -malign-double -funroll-loops'
                0015 else
                0016     FFLAGS='-Wimplicit -Wunused -ffloat-store'
                0017     FOPTIM='-O0 -malign-double'
                0018 fi
                0019 
                0020 
                0021