Warning, /tools/build_options/unsupported/linux_ppc64_xlf_ncar 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
6f6cf02b9a Cons*0001 #!/bin/bash
0002 #
0003 # tested on frost, ce107 Aug 4 2005
0004 # using the following invocation:
0005 # ../../../tools/genmake2 -mods=../code -of=../../../tools/build_options/linux_ppc64_xlf
0006
0007
0008 S64='$(TOOLSDIR)/set64bitConst.sh'
0009 MAKEDEPEND=makedepend
ebd02148a5 Cons*0010 DEFINES='-DWORDLENGTH=4 -DNML_TERMINATOR'
6f6cf02b9a Cons*0011 INCLUDES='-I/contrib/fe_tools/xlc64/netcdf-3.6.0-p1/include'
0012 CPP='/lib/cpp -traditional -P'
0013 FC='xlf -q64'
0014 CC='xlc -q64'
0015 LINK='xlf -q64'
0016 LIBS='-L/contrib/fe_tools/xlc64/netcdf-3.6.0-p1/lib -lnetcdf'
0017 FFLAGS='-qfixed=132'
0018 if test "x$IEEE" = x ; then
0019 # No need for IEEE-754
0020 FOPTIM='-O5 -qarch=auto -qtune=auto -qcache=auto -qmaxmem=-1 -qipa=noobject:partition=large:threads'
0021 CFLAGS='-O5 -qinlglue -qarch=auto -qtune=auto -qcache=auto -qmaxmem=-1 -qipa=noobject:partition=large:threads'
0022 else
0023 FOPTIM='-O3 -qstrict -qarch=auto -qtune=auto -qcache=auto -qmaxmem=-1'
0024 CFLAGS='-O3 -qstrict -qarch=auto -qtune=auto -qcache=auto -qmaxmem=-1'
0025 fi
0026 FC_NAMEMANGLE="#define FC_NAMEMANGLE(X) X"