Warning, /tools/build_options/unsupported/linux_ia32_pgf77+authors_fc2 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
b17a22ae6f Ed H*0001 #!/bin/bash
0002 #
0003 #
0004
0005 FC='/usr/local/pkg/pgi/pgi-5.2/linux86/5.2/bin/pgf77'
0006 CC='/usr/local/pkg/pgi/pgi-5.2/linux86/5.2/bin/pgcc'
0007 DEFINES='-DWORDLENGTH=4'
0008 CPP='cpp -traditional -P'
0009
0010 if test "x$IEEE" = x ; then
0011 # No need for IEEE-754
0012 FFLAGS='-byteswapio -r8 -Mnodclchk -Mextend'
0013 FOPTIM='-fastsse -Mvect=cachesize:524288,transform'
0014 else
0015 # Try to follow IEEE-754
0016 FFLAGS='-byteswapio -r8 -Mnodclchk -Mextend'
0017 FOPTIM='-O0 -Mvect=sse -Mscalarsse -Mcache_align -Mnoflushz -Kieee'
0018 fi
0019