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