#!/bin/bash # # $Header: /home/ubuntu/mnt/e9_copy/MITgcm/tools/build_options/linux_amd64_pgf77,v 1.7 2013/07/22 18:40:45 jmc Exp $ # $Name: $ # # Build options for PGI compiler on Linux AMD64 platform # # tested with PGI version 10.9 on baudelaire (Linux 2.6.34.7-61.fc13.x86_64), using: # - sh,bash: # > export PGI=/srv/software/pgi/pgi-10.9 # > export PATH=$PGI/linux86-64/10.9/bin:$PATH # > export MANPATH=$MANPATH:$PGI/linux86-64/10.9/man # > export LM_LICENSE_FILE=$PGI/license.dat # - csh,tcsh: # > setenv PGI /srv/software/pgi/pgi-10.9 # > set path=($PGI/linux86-64/10.9/bin $path) # > setenv MANPATH "$MANPATH":$PGI/linux86-64/10.9/man # > setenv LM_LICENSE_FILE $PGI/license.dat # # and tested also with MPI on acesgrid (Fedora Core 15), using: # module load pgi (Version 11.7) # and with mpich2: # module load mvapich2 # or with openmpi: # module load openmpi #------- if test "x$MPI" = xtrue ; then CC=mpicc FC=mpif77 F90C=mpif90 else CC=pgcc FC=pgf77 F90C=pgf90 fi DEFINES="-DWORDLENGTH=4" if test "x$ALWAYS_USE_F90" = x1 ; then FC=$F90C else DEFINES="$DEFINES -DNML_EXTENDED_F77" fi CPP='cpp -traditional -P' EXTENDED_SRC_FLAG='-Mextend' GET_FC_VERSION="-V" NOOPTFLAGS='-O0' NOOPTFILES='' FFLAGS="$FFLAGS -byteswapio -Ktrap=fp" #- might want to use '-r8' for fizhi pkg: #FFLAGS="$FFLAGS -r8" if test "x$IEEE" = x ; then #- with optimisation: FOPTIM='-tp k8-64 -pc=64 -O2 -Mvect=sse' #FOPTIM="$FOPTIM -fastsse -O3 -Msmart -Mvect=cachesize:1048576,transform" else #- no optimisation + IEEE : #FFLAGS="$FFLAGS -Mdclchk" #- pkg/zonal_filt does not pass with declaration-check FOPTIM='-pc=64 -O0 -Kieee' fi INCLUDEDIRS='' INCLUDES='' LIBS='' if [ -n "$MPI_INC_DIR" -a "x$MPI" = xtrue ] ; then INCLUDES="$INCLUDES -I$MPI_INC_DIR" INCLUDEDIRS="$INCLUDEDIRS $MPI_INC_DIR" #- used for parallel (MPI) DIVA MPIINCLUDEDIR="$MPI_INC_DIR" #MPI_HEADER_FILES='mpif.h mpiof.h' fi