Warning, /tools/build_options/linux_ia64_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 DEFINES='-D_BYTESWAPIO -DWORDLENGTH=4 -DNML_EXTENDED_F77'
f10e3a8bdd Ed H*0005 CPP='cpp -traditional -P'
0006 NOOPTFLAGS='-O0'
7a8d0b199d Jean*0007 EXTENDED_SRC_FLAG='-ffixed-line-length-132'
0008 GET_FC_VERSION="--version"
f10e3a8bdd Ed H*0009
0010 # For IEEE, use the "-ffloat-store" option
0011 if test "x$IEEE" = x ; then
0012 FFLAGS='-Wimplicit -Wunused -Wuninitialized'
0013 FOPTIM='-O3 -funroll-loops'
0014 else
471cf7f1ef Ed H*0015 FFLAGS='-Wimplicit -Wunused -ffloat-store'
f10e3a8bdd Ed H*0016 FOPTIM='-O0'
0017 fi
0018
0019
0020