/[MITgcm]/MITgcm/tools/build_options/unsupported/sunos_sparc_sunf90+mpi_generic
ViewVC logotype

Annotation of /MITgcm/tools/build_options/unsupported/sunos_sparc_sunf90+mpi_generic

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Thu Sep 29 16:25:55 2011 UTC (12 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint64, checkpoint65, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, HEAD
move to unsupported/ (has been merged into sunos_sparc_sunf90)

1 jmc 1.1 #!/bin/bash
2     #
3     # $Header: /u/gcmpack/MITgcm/tools/build_options/sunos_sparc_sunf90+mpi_generic,v 1.2 2010/03/21 22:22:53 jmc Exp $
4     # $Name: $
5    
6     # Build options for the Sun fortran compiler with a generic MPI
7     # DON'T FORGET to set environment variable MPI_INC_DIR to the include
8     # directory of your MPI implementation
9    
10     FC=${FC:=mpif77}
11     F90C=${F90C:=mpif90}
12     CC=${CC:=mpicc}
13     LINK=${F90C}
14     FC_NAMEMANGLE="#define FC_NAMEMANGLE(X) X ## _"
15     DEFINES='-DWORDLENGTH=4'
16     CPP='/usr/ccs/lib/cpp -P'
17     NOOPTFLAGS='-O0 -g -m32 -u -r8const'
18     NOOPTFILES=''
19     EXTENDED_SRC_FLAG='-e'
20     OMPFLAG='-xopenmp'
21    
22     if test "x$DEVEL" != x ; then
23     FFLAGS='-u -r8const -g -xs -C -xcommonchk -xcheck=init_local -fpover'
24     else
25     FFLAGS='-u -r8const'
26     fi
27    
28     if test "x$IEEE" = x ; then
29     # No need for IEEE-754
30     FOPTIM='-fast -m32 -xvector=lib -xpad=local'
31     LIBS="$LIBS -lmopt -lsunmath"
32     else
33     # Try to follow IEEE-754
34     # FOPTIM='-O0 -m32'
35     FOPTIM='-fast -m32 -xpad=local -fsimple=1'
36     fi
37     F90FLAGS=$FFLAGS
38     F90OPTIM=$FOPTIM
39     CFLAGS='-O3 -m32'
40    
41     if [ "x$NETCDF_ROOT" != x ] ; then
42     INCLUDEDIR="${NETCDF_ROOT}/include"
43     INCLUDES="-I${NETCDF_ROOT}/include"
44     LIBDIR="${NETCDF_ROOT}/lib"
45     LIBS="-L${NETCDF_ROOT}/lib"
46     elif [ "x$NETCDF_HOME" != x ]; then
47     INCLUDEDIR="${NETCDF_HOME}/include"
48     INCLUDES="-I${NETCDF_HOME}/include"
49     LIBDIR="${NETCDF_HOME}/lib"
50     LIBS="-L${NETCDF_HOME}/lib"
51     elif [ "x$NETCDF_INC" != x -a "x$NETCDF_LIB" != x ]; then
52     NETCDF_INC=`echo $NETCDF_INC | sed 's/-I//g'`
53     NETCDF_LIB=`echo $NETCDF_LIB | sed 's/-L//g'`
54     INCLUDEDIR="${NETCDF_INC}"
55     INCLUDES="-I${NETCDF_INC}"
56     LIBDIR="${NETCDF_LIB}"
57     LIBS="-L${NETCDF_LIB}"
58     elif [ "x$NETCDF_INCDIR" != x -a "x$NETCDF_LIBDIR" != x ]; then
59     INCLUDEDIR="${NETCDF_INCDIR}"
60     INCLUDES="-I${NETCDF_INCDIR}"
61     LIBDIR="${NETCDF_LIBDIR}"
62     LIBS="-L${NETCDF_LIBDIR}"
63     elif test -d /usr/include/netcdf ; then
64     INCLUDES='-I/usr/include/netcdf'
65     elif test -d /usr/local/netcdf ; then
66     INCLUDES='-I/usr/local/netcdf/include'
67     LIBS='-L/usr/local/netcdf/lib'
68     elif test -d /usr/local/include/netcdf.inc ; then
69     INCLUDES='-I/usr/local/include'
70     LIBS='-L/usr/local/lib'
71     fi
72    
73     INCLUDES="$INCLUDES -I$MPI_INC_DIR"
74     INCLUDEDIRS="$INCLUDEDIRS $MPI_INC_DIR"
75     MPIINCLUDEDIR="$MPI_INC_DIR"
76     MPI_HEADER_FILES=${MPI_HEADER_FILES:='mpif.h mpiof.h'}
77     MPI_HEADER_FILES_INC=${MPI_HEADER_FILES_INC:='./mpi_headers/mpif.h ./mpi_headers/mpiof.h'}
78    

  ViewVC Help
Powered by ViewVC 1.1.22