/[MITgcm]/MITgcm/tools/build_options/linux_ia32_pathf90
ViewVC logotype

Contents of /MITgcm/tools/build_options/linux_ia32_pathf90

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


Revision 1.3 - (show annotations) (download)
Mon Sep 12 02:43:04 2011 UTC (12 years, 7 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, checkpoint63c, 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
Changes since 1.2: +19 -13 lines
merge linux_ia32_pathf90+mth into standard optfile (not sure if comments
 are right: add warning)

1 #!/bin/bash
2 #
3 # $Header: /u/gcmpack/MITgcm/tools/build_options/linux_ia32_pathf90,v 1.2 2009/06/22 23:13:30 ce107 Exp $
4 # $Name: $
5 #
6 #== Warning ==> comments below have been copied from optfile linux_amd64_pathf90
7 # and do not strickly apply to this file <==
8 # Build options for Fedore Core 3 x86-64 Opteron
9 # tested on (Linux batsi 2.6.10-1.766_FC3smp #1 SMP Wed Feb 9 23:17:48 EST 2005 x86_64 x86_64 x86_64 GNU/Linux) system 20051802
10 #
11 # Multithreaded tests require
12 # export PSC_OMP_STACK_SIZE=400m
13 # export OMP_NUM_THREADS=2
14
15 CC=pathcc
16 FC=pathf90
17 LINK=pathf90
18
19 DEFINES='-DWORDLENGTH=4'
20 CPP='cpp -traditional -P'
21 #MAKEDEPEND=/usr/X11R6/bin/makedepend
22 OMPFLAG='-openmp'
23 #OMPFLAG='-openmp -OPT:early_mp=ON'
24
25 NOOPTFLAGS='-O0 -g'
26 NOOPTFILES=''
27
28 FFLAGS="$FFLAGS -m32 -convert big_endian"
29 if test "x$DEVEL" != x ; then
30 FFLAGS="$FFLAGS -ffortran-bounds-check -trapuv -g"
31 fi
32
33 if test "x$IEEE" = x ; then #- with optimisation:
34 FOPTIM='-Ofast -LNO:fusion=2 -funsafe-math-optimizations'
35 else #- no optimisation + IEEE :
36 FOPTIM='-O0 -OPT:roundoff=0:IEEE_arithmetic=1 -fmath-errno -fno-fast-math'
37 fi
38
39 F90FLAGS=$FFLAGS
40 F90OPTIM=$FOPTIM
41 CFLAGS='-O0 -m32'
42
43 if [ "x$NETCDF_ROOT" != x ] ; then
44 INCLUDEDIR="${NETCDF_ROOT}/include"
45 INCLUDES="-I${NETCDF_ROOT}/include"
46 LIBDIR="${NETCDF_ROOT}/lib"
47 LIBS="-L${NETCDF_ROOT}/lib"
48 elif [ "x$NETCDF_HOME" != x ]; then
49 INCLUDEDIR="${NETCDF_HOME}/include"
50 INCLUDES="-I${NETCDF_HOME}/include"
51 LIBDIR="${NETCDF_HOME}/lib"
52 LIBS="-L${NETCDF_HOME}/lib"
53 elif [ "x$NETCDF_INC" != x -a "x$NETCDF_LIB" != x ]; then
54 NETCDF_INC=`echo $NETCDF_INC | sed 's/-I//g'`
55 NETCDF_LIB=`echo $NETCDF_LIB | sed 's/-L//g'`
56 INCLUDEDIR="${NETCDF_INC}"
57 INCLUDES="-I${NETCDF_INC}"
58 LIBDIR="${NETCDF_LIB}"
59 LIBS="-L${NETCDF_LIB}"
60 elif [ "x$NETCDF_INCDIR" != x -a "x$NETCDF_LIBDIR" != x ]; then
61 INCLUDEDIR="${NETCDF_INCDIR}"
62 INCLUDES="-I${NETCDF_INCDIR}"
63 LIBDIR="${NETCDF_LIBDIR}"
64 LIBS="-L${NETCDF_LIBDIR}"
65 elif test -d /usr/include/netcdf-3 ; then
66 INCLUDES='-I/usr/include/netcdf-3'
67 LIBS='-L/usr/lib/netcdf-3 -L/usr/lib64/netcdf-3'
68 elif test -d /usr/include/netcdf ; then
69 INCLUDES='-I/usr/include/netcdf'
70 elif test -d /usr/local/netcdf ; then
71 INCLUDES='-I/usr/local/netcdf/include'
72 LIBS='-L/usr/local/netcdf/lib'
73 elif test -d /usr/local/include/netcdf.inc ; then
74 INCLUDES='-I/usr/local/include'
75 LIBS='-L/usr/local/lib64'
76 fi

  ViewVC Help
Powered by ViewVC 1.1.22