Warning, /tools/build_options/unsupported/linux_alpha_g77+mpi 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
2ff82eb834 Ed H*0001 #!/bin/bash
0002 #
f10e3a8bdd Ed H*0003 FC='g77'
7a8d0b199d Jean*0004
0005 DEFINES='-DWORDLENGTH=4 -DNML_EXTENDED_F77'
0006 CPP='cpp -traditional -P'
0007
0008 EXTENDED_SRC_FLAG='-ffixed-line-length-132'
0009 GET_FC_VERSION="--version"
0010
6aec5d9846 Ed H*0011 LIBS='-L/usr/local/lib/LINUX/ch_p4/ -lfmpich -lmpich'
0012 INCLUDES='-I/usr/local/include'
471cf7f1ef Ed H*0013
7a8d0b199d Jean*0014 #FOPTIM='-ffast-math -fexpensive-optimizations -fomit-frame-pointer -O3'
471cf7f1ef Ed H*0015
0016 # For IEEE, use the "-ffloat-store" option
0017 if test "x$IEEE" = x ; then
0018 FFLAGS='-Wimplicit -Wunused -Wuninitialized'
0019 FOPTIM='-O3 -funroll-loops'
0020 else
0021 FFLAGS='-Wimplicit -Wunused -ffloat-store'
0022 FOPTIM='-O0'
0023 fi
0024