source: LMDZ6/trunk/makelmdz @ 4495

Last change on this file since 4495 was 4489, checked in by lguez, 15 months ago

Merge LMDZ_ECRad branch back into trunk!

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:executable set to *
File size: 26.4 KB
Line 
1#!/bin/bash
2#
3# $Id$
4#
5#
6########################################################################
7# for debug, uncomment line below
8#set -xv
9########################################################################
10# options par defaut pour la commande make
11########################################################################
12dim="96x72x19"
13physique=lmd
14code=gcm
15filtre=filtrez
16grille=reg
17couple=false
18veget=false
19chimie=false
20parallel=none
21paramem="mem"
22compil_mod=prod
23io=ioipsl
24LIBPREFIX=""
25fcm_path=none
26cosp=false
27cosp2=false
28cospv2=false
29inlandsis=false
30rrtm=false
31rad=""
32dust=false
33strataer=false
34full=""
35
36arch_defined="FALSE"
37arch_path="arch"
38arch_default_path="arch"
39
40# guess a default 'arch'
41arch="local" # start with assuming we're on a local machine with local arch file
42arch_defined="TRUE" # and thus also set arch_defined to true
43## try to recognise machine and infer arch from it
44machine=`hostname`
45if [[ "${machine:0:4}" == "jean" ]]
46then
47  arch="X64_JEANZAY"
48fi
49if [[ "${machine:0:7}" == "platine" ]]
50then
51  arch="IA64_PLATINE"
52fi
53if [[ "${machine:0:6}" == "titane" ]]
54then
55  arch="X64_TITANE"
56fi
57if [[ "${machine:0:8}" == "mercure1" ]]
58then
59  arch="SX8_MERCURE"
60fi
61if [[ "${machine:0:8}" == "mercure2" ]]
62then
63  arch="SX9_MERCURE"
64fi
65
66LMDGCM=`pwd -P`
67LIBFGCM=$LMDGCM/libf
68LIBOGCM=$LMDGCM/libo
69if [[ ! -d $LIBOGCM ]]
70then
71  # create the directory
72  mkdir $LIBOGCM
73  if [[ ! $? ]]
74  then
75  echo "Failed to create directory $LIBOGCM"
76  exit
77  fi
78fi
79#COSP_PATH=$LMDGCM/.void_dir
80
81
82
83localdir=`pwd -P`
84########################################################################
85#  Quelques initialisations de variables du shell.
86########################################################################
87
88CPP_KEY="IN_LMDZ" 
89INCLUDE='-I$(LIBF)/grid -I$(LIBF)/misc -I$(LIBF)/filtrez -I. '
90LIB=""
91adjnt=""
92##COMPIL_FFLAGS="%PROD_FFLAGS"
93PARA_FFLAGS=""
94PARA_LD=""
95EXT_SRC=""
96#src_dirs: directories containing source files
97src_dirs="grid misc" 
98########################################################################
99# lecture des options
100########################################################################
101
102while (($# > 0))
103  do
104  case $1 in
105      "-h") cat <<fin
106Usage :
107makelmdz [options] -arch nom_arch exec
108[-h]                       : brief help
109[-d [[IMx]JMx]LM]          : IM, JM, LM are the dimensions in x, y, z (default: $dim)
110[-p PHYS]                  : set of physical parametrizations (in libf/phyPHYS), (default: lmd)
111[-prod / -dev / -debug]    : compilation mode production (default) / developement / debug
112[-c false/MPI1/MPI2]       : coupling with ocean model : MPI1/MPI2/false (default: false)
113[-v false/orchideetrunk/orchidee2.1/orchidee2.0/orchidee1.9] : version of the vegetation model to include (default: false)
114          false       : no vegetation model
115          orchideetrunk : compile using ORCHIDEE trunk from revision 7757 or higher
116          orchidee2.1 : compile using ORCHIDEE 2.1 until 4.1 included or until revision 7757 on the trunk
117          orchidee2.0 : compile using ORCHIDEE 2.0 (or more recent version)
118          orchidee1.9 : compile using ORCHIDEE up to the version including OpenMP in ORCHIDEE : tag 1.9-1.9.5(version AR5)-1.9.6
119          true        : (obsolete; for backward compatibility) use ORCHIDEE tag 1.9-1.9.6
120[-chimie INCA/false]       : with INCA chemistry model or without (default: false)
121[-cosp true/false]    : compile with/without cosp package (default: false)
122[-cosp2 true/false]    : compile with/without cosp2 package (default: false)
123[-cospv2 true/false]    : compile with/without cospv2 package (default: false)
124[-inlandsis true/false]  : compile with/without inlandsis package (default: false)
125[-rrtm true/false]    : compile with/without rrtm package (default: false)
126[-rad oldrad/rrtm/ecrad]    : compile with oldrad/rrtm/ecrad radiatif code (default: oldrad)
127[-dust true/false]    : compile with/without the dust package from Boucher et al. (default: false)
128[-strataer true/false]    : compile with/without the strat aer package from Boucher et al. (default: false)
129[-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp
130[-g GRI]                   : grid configuration in dyn3d/GRI_xy.h  (default: reg, inclues a zoom)
131[-io ioipsl/mix/xios]                   : Input/Output library (default: ioipsl)
132[-include INCLUDES]        : extra include path to add
133[-cpp CPP_KEY]             : additional preprocessing definitions
134[-adjnt]                   : adjoint model, not operational ...
135[-mem]                     : reduced memory dynamics (obsolete flag; always on in parallel mode)
136[-filtre NOMFILTRE]        : use filtre from libf/NOMFILTRE (default: filtrez)
137[-full]                    : Full (re)compilation (from scratch)
138[-link LINKS]              : additional links with other libraries
139[-fcm_path path]           : path to the fcm tool (default: tools/fcm/bin)
140[-ext_src path]            : path to an additional set of routines to compile with the model
141[-arch_path path]          : path to architecture files (default: $arch_default_path)
142 -arch nom_arch            : target architecture
143 exec                      : executable to build
144fin
145          exit;;
146      "-d")
147          dim=$2 ; shift ; shift ;;
148     
149      "-p")
150          physique="$2" ;  shift ; shift ;;
151
152      "-g")
153          grille="$2" ; shift ; shift ;;
154
155      "-c")
156          couple="$2" ; shift ; shift ;;
157
158      "-prod")
159          compil_mod="prod" ; shift ;;
160
161      "-dev")
162          compil_mod="dev" ; shift ;;
163
164      "-debug")
165          compil_mod="debug" ; shift ;;
166
167      "-io")
168          io="$2" ; shift ; shift ;;
169
170      "-v")
171          veget="$2" ; shift ; shift ;;
172
173      "-chimie")
174          chimie="$2" ; shift ; shift ;;
175
176      "-parallel")
177          parallel="$2" ; shift ; shift ;;
178     
179      "-include")
180          INCLUDE="$INCLUDE -I$2" ; shift ; shift ;;
181
182      "-cpp")
183          CPP_KEY="$CPP_KEY $2" ; shift ; shift ;;
184
185      "-cosp")
186          cosp="$2" ; shift ; shift ;;
187
188      "-cosp2")
189          cosp2="$2" ; shift ; shift ;;
190
191      "-cosp2")
192          cospv2="$2" ; shift ; shift ;;
193     
194      "-inlandsis")
195          inlandsis="$2" ; shift ; shift ;; 
196
197      "-rrtm")
198          rrtm="$2" ; if [ "$2" = "false" ] ; then rad="oldrad" ; else rad="rrtm" ; fi ; shift ; shift ;;
199
200      "-rad")
201          rad="$2" ; shift ; shift ;;
202
203      "-dust")
204          dust="$2" ; shift ; shift ;;
205     
206      "-strataer")
207          strataer="$2" ; shift ; shift ;;
208     
209      "-mem")
210          echo "option -mem is obsolete (now always on in parallel)"
211          paramem="mem" ; shift ;;
212
213      "-filtre")
214          filtre=$2 ; shift ; shift ;;
215
216      "-full")
217      full="full" ; shift ;;
218
219      "-link")
220          LIB="$LIB $2" ; shift ; shift ;;
221
222      "-fcm_path")
223          fcm_path=$2 ; shift ; shift ;;
224
225      "-ext_src")
226          EXT_SRC=$2 ; src_dirs="$src_dirs $EXT_SRC" ; shift ; shift ;;
227
228      "-arch")
229          arch=$2 ; arch_defined="TRUE" ; shift ; shift ;;
230
231      "-arch_path")
232          arch_path=$2 ; arch_path_defined="TRUE"; shift ; shift ;;
233
234      *)
235          code="$1" ; shift ;;
236  esac
237done
238
239###############################################################
240# lecture des chemins propres \`a l'architecture de la machine #
241###############################################################
242rm -f .void_file
243echo > .void_file
244rm -rf .void_dir
245mkdir .void_dir
246
247if [[ "$arch_defined" == "TRUE" ]]
248then
249  rm -f arch.path
250  rm -f arch.fcm
251  rm -f arch.env
252
253  if test -f $arch_path/arch-${arch}.path
254  then
255    ln -s $arch_path/arch-${arch}.path arch.path
256  elif test -f $arch_default_path/arch-${arch}.path
257  then
258    ln -s $arch_default_path/arch-${arch}.path arch.path
259  fi
260       
261  if test -f $arch_path/arch-${arch}.fcm
262  then
263    ln -s $arch_path/arch-${arch}.fcm arch.fcm
264  elif test -f $arch_default_path/arch-${arch}.fcm
265  then
266    ln -s $arch_default_path/arch-${arch}.fcm arch.fcm
267  fi
268
269  if test -f $arch_path/arch-${arch}.env
270  then
271    ln -s $arch_path/arch-${arch}.env arch.env
272  elif test -f $arch_default_path/arch-${arch}.env
273  then
274    ln -s $arch_default_path/arch-${arch}.env arch.env
275  else
276    ln -s .void_file arch.env
277  fi
278  # source architecture PATH and ENV files
279  source arch.env
280  source arch.path
281else
282  echo "You must define a target architecture"
283  exit 1
284fi
285
286########################################################################
287# Definition des clefs CPP, des chemins des includes et modules
288#  et des libraries
289########################################################################
290
291# basic compile flags from arch.fcm file
292archfileline=$( grep -i '^%BASE_FFLAGS' arch.fcm )
293COMPIL_FFLAGS=$( echo ${archfileline##%BASE_FFLAGS} )
294
295# other compile flags, depending on compilation mode
296if [[ "$compil_mod" == "prod" ]]
297then
298## read COMPIL_FFLAGS from arch.fcm file
299  archfileline=$( grep -i '^%PROD_FFLAGS' arch.fcm )
300  archfileopt=$( echo ${archfileline##%PROD_FFLAGS} )
301  COMPIL_FFLAGS="${COMPIL_FFLAGS} ${archfileopt}"
302elif [[ "$compil_mod" == "dev" ]]
303then
304## read %DEV_FFLAGS from arch.fcm file
305  archfileline=$( grep -i '^%DEV_FFLAGS' arch.fcm )
306  archfileopt=$( echo ${archfileline##%DEV_FFLAGS} )
307  COMPIL_FFLAGS="${COMPIL_FFLAGS} ${archfileopt}"
308elif [[ "$compil_mod" == "debug" ]]
309then
310## read %DEBUG_FFLAGS from arch.fcm file
311  archfileline=$( grep -i '^%DEBUG_FFLAGS' arch.fcm )
312  archfileopt=$( echo ${archfileline##%DEBUG_FFLAGS} )
313  COMPIL_FFLAGS="${COMPIL_FFLAGS} ${archfileopt}"
314fi
315
316# add CPP_KEY defined in arch.fcm file
317archfileline=$( grep -i '^%FPP_DEF' arch.fcm )
318archfileopt=$( echo ${archfileline##%FPP_DEF} )
319CPP_KEY="$CPP_KEY ${archfileopt}"
320
321# get compiler name from arch.fcm file
322archfileline=$( grep -i '^%COMPILER' arch.fcm )
323fcompiler=$( echo ${archfileline##%COMPILER} )
324
325# get linker name from arch.fcm file
326archfileline=$( grep -i '^%LINK' arch.fcm )
327linker=$( echo ${archfileline##%LINK} )
328
329# get ar command from arch.fcm file
330archfileline=$( grep -i '^%AR ' arch.fcm )
331arcommand=$( echo ${archfileline##%AR} )
332
333# get ar command options from arch.fcm file
334archfileline=$( grep -i '^%ARFLAGS' arch.fcm )
335arflags=$( echo ${archfileline##%ARFLAGS} )
336
337# get make utility from arch.fcm file
338archfileline=$( grep -i '^%MAKE' arch.fcm )
339makecommand=$( echo ${archfileline##%MAKE} )
340
341# get basic libraries to link with arch.fcm file
342archfileline=$( grep -i '^%BASE_LD' arch.fcm )
343archfileopt=$( echo ${archfileline##%BASE_LD} )
344LIB="$LIB  ${archfileopt}"
345
346# add Include files defined in arch.fcm file for pre-processing
347archfileline=$( grep -i '^%FPP_FLAGS' arch.fcm )
348for inc in $archfileline ; do INCLUDE="$INCLUDE `echo $inc | grep '\-I'`" ; done
349
350phys_root=$physique
351if [[ "${physique:0:3}" == "lmd" ]] ; then phys_root=lmd ; fi
352if [[ "${physique:0:4}" == "mars" ]] ; then phys_root=mars ; fi
353if [[ "${physique:0:3}" == "std" ]] ; then phys_root=std ; fi
354if [[ "${physique:0:5}" == "venus" ]] ; then phys_root=venus ; fi
355if [[ "${physique:0:5}" == "titan" ]] ; then phys_root=titan ; fi
356if [[ "${physique:0:3}" == "dev" ]] ; then phys_root=dev ; fi
357
358if [[ "$physique" != "nophys" ]]
359then
360   #We'll use some physics
361   src_dirs="$src_dirs phy_common phy$physique"
362   LIBPHY='$(LIBO)/libphy'"$physique"'.a'
363   LIBPHY_COMMON='$(LIBO)/libphy_common.a'
364   lib_phy='-lphy'"$physique"' -lphy_common'
365   CPP_KEY="$CPP_KEY CPP_PHYS"
366   if [[ $phys_root == "lmd" ]]
367      then
368      #For lmd physics, default planet type is Earth
369      CPP_KEY="$CPP_KEY CPP_EARTH"
370   fi
371fi
372
373if [[ "$chimie" == "INCA" ]]
374then
375   CPP_KEY="$CPP_KEY INCA"
376   INCLUDE="$INCLUDE ${INCA_INCDIR}"
377   LIB="$LIB ${INCA_LIBDIR} ${INCA_LIB}"
378   libchimie=" ${INCA_LIBDIR} ${INCA_LIB}"
379fi
380
381if [[ "$couple" != "false" ]]
382then
383   CPP_KEY="$CPP_KEY CPP_COUPLE"
384   INCLUDE="$INCLUDE ${OASIS_INCDIR}"
385   LIB="$LIB ${OASIS_LIBDIR} ${OASIS_LIB}"
386fi
387
388if [[ "$parallel" == "none" ]]
389then
390  FLAG_PARA=''
391else
392  FLAG_PARA="$paramem"
393  if [[ $paramem == par ]]
394  then
395      echo "The version of the dynamics in dyn3dpar is no longer updated."
396      echo "You should use option \"-mem\"."
397      exit 1
398  fi
399fi
400
401if [[ "$parallel" == "mpi" ]]
402then
403   CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI"
404  # MPI additional compilation options
405  archfileline=$( grep -i '^%MPI_FFLAGS' arch.fcm )
406  PARA_FFLAGS=$( echo ${archfileline##%MPI_FFLAGS} )
407  # MPI additional links
408  archfileline=$( grep -i '^%MPI_LD' arch.fcm )
409  PARA_LD=$( echo ${archfileline##%MPI_LD} )
410elif [[ "$parallel" == "omp" ]]
411then
412   CPP_KEY="$CPP_KEY CPP_PARA CPP_OMP"
413  # OMP additional compilation options
414  archfileline=$( grep -i '^%OMP_FFLAGS' arch.fcm )
415  PARA_FFLAGS=$( echo ${archfileline##%OMP_FFLAGS} )
416  # OMP additional links
417  archfileline=$( grep -i '^%OMP_LD' arch.fcm )
418  PARA_LD=$( echo ${archfileline##%OMP_LD} )
419elif [[ "$parallel" == "mpi_omp" ]]
420then
421   CPP_KEY="$CPP_KEY CPP_PARA CPP_MPI CPP_OMP"
422  # MPI additional compilation options
423  archfileline=$( grep -i '^%MPI_FFLAGS' arch.fcm )
424  PARA_FFLAGS=$( echo ${archfileline##%MPI_FFLAGS} )
425  # OMP additional compilation options
426  archfileline=$( grep -i '^%OMP_FFLAGS' arch.fcm )
427  PARA_FFLAGS="${PARA_FFLAGS} "$( echo $archfileopt ${archfileline##%OMP_FFLAGS} )
428  # MPI additional links
429  archfileline=$( grep -i '^%MPI_LD' arch.fcm )
430  PARA_LD=$( echo ${archfileline##%MPI_LD} )
431  # OMP additional links
432  archfileline=$( grep -i '^%OMP_LD' arch.fcm )
433  PARA_LD="${PARA_LD} "$( echo $archfileopt ${archfileline##%OMP_LD} )
434fi
435
436if [[ ( "$parallel" == "omp" || "$parallel" == "mpi_omp" ) \
437   && "$compil_mod" == "debug" ]]
438then
439    echo "Usually, parallelization with OpenMP requires some optimization."
440    echo "We suggest switching to \"-dev\"."
441fi
442
443
444#==============================================================================
445if [ "$veget" = "true" -o "$veget" = "orchidee1.9" -o "$veget" = "orchidee2.0" -o "$veget" = "orchidee2.1" -o "$veget" = "orchideetrunk" ]
446then
447
448   INCLUDE="${INCLUDE} ${ORCH_INCDIR}"
449   CPP_KEY="$CPP_KEY CPP_VEGET"
450# temporary, for Orchidee versions 1.9.* (before openmp activation)
451   if [[ "$veget" == "orchidee1.9" ]] ; then
452      CPP_KEY="$CPP_KEY ORCHIDEE_NOOPENMP"
453   fi
454   if [[ "$veget" == "orchidee2.0" ]] ; then
455      orch_libs="-lsechiba -lparameters -lstomate -lparallel -lorglob -lorchidee"
456      CPP_KEY="$CPP_KEY ORCHIDEE_NOUNSTRUCT"
457   elif [[ "$veget" == "orchidee2.1" ]] ; then
458      CPP_KEY="$CPP_KEY ORCHIDEE_NOLIC"
459      orch_libs="-lsechiba -lparameters -lstomate -lparallel -lorglob -lorchidee"
460   elif [[ "$veget" == "orchideetrunk" ]] ; then
461      orch_libs="-lorchidee"
462   else
463      orch_libs="-lsechiba -lparameters -lstomate -lparallel -lorglob"
464   fi
465   LIB="${LIB} ${ORCH_LIBDIR} ${orch_libs}"
466#   for lib in ${orch_libs} ; do
467#      if [ -f ${ORCH_LIBDIR}/lib${LIBPREFIX}$lib.a ] ; then
468#         LIB="${LIB} -l${LIBPREFIX}$lib "
469#      fi
470#   done
471elif [[ "$veget" != "false" ]] ; then
472   echo "Option -v $veget does not exist"
473   echo "Use ./makelmdz -h for more information"
474   exit 
475fi
476
477#===============================================================================
478INCLUDE="$INCLUDE ${NETCDF95_INCDIR}"
479LIB="$LIB ${NETCDF95_LIBDIR} -l${LIBPREFIX}netcdf95"
480
481if [[ $io == ioipsl ]]
482then
483   CPP_KEY="$CPP_KEY CPP_IOIPSL"
484   INCLUDE="$INCLUDE ${IOIPSL_INCDIR}"
485   LIB="$LIB ${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl"
486elif [[ $io == mix ]]
487then
488   # For now, xios implies also using ioipsl
489   CPP_KEY="$CPP_KEY CPP_IOIPSL CPP_XIOS"
490   INCLUDE="$INCLUDE ${IOIPSL_INCDIR} ${XIOS_INCDIR}"
491   LIB="$LIB ${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl ${XIOS_LIBDIR} -l${LIBPREFIX}stdc++ -l${LIBPREFIX}xios -l${LIBPREFIX}stdc++"
492elif [[ $io == xios ]]
493then
494   # For now, xios implies also using ioipsl
495   CPP_KEY="$CPP_KEY CPP_IOIPSL CPP_XIOS CPP_IOIPSL_NO_OUTPUT"
496   INCLUDE="$INCLUDE ${IOIPSL_INCDIR} ${XIOS_INCDIR}"
497   LIB="$LIB ${IOIPSL_LIBDIR} -l${LIBPREFIX}ioipsl ${XIOS_LIBDIR} -l${LIBPREFIX}stdc++ -l${LIBPREFIX}xios -l${LIBPREFIX}stdc++"
498fi
499
500if [[ "$cosp" == "true" ]]
501then
502   CPP_KEY="$CPP_KEY CPP_COSP"
503#   COSP_PATH="$LIBFGCM/phylmd/cosp"
504   src_dirs="$src_dirs phy${physique}/cosp"
505#   LIB="${LIB} -l${LIBPREFIX}cosp"
506#  opt_dep="$opt_dep cosp"
507#  lcosp="-l${LIBPREFIX}cosp"
508   INCLUDE="$INCLUDE"' -I$(LIBF)/'phy${physique}'/cosp'
509fi
510
511if [[ "$cosp2" == "true" ]]
512then
513   CPP_KEY="$CPP_KEY CPP_COSP2"
514   src_dirs="$src_dirs phy${physique}/cosp2"
515   INCLUDE="$INCLUDE"' -I$(LIBF)/'phy${physique}'/cosp2'
516fi
517
518if [[ "$cospv2" == "true" ]]
519then
520   CPP_KEY="$CPP_KEY CPP_COSPV2"
521   src_dirs="$src_dirs phy${physique}/cospv2"
522   INCLUDE="$INCLUDE"' -I$(LIBF)/'phy${physique}'/cospv2'
523fi
524
525
526if [[ "$inlandsis" == "true" ]]
527then
528   CPP_KEY="$CPP_KEY CPP_INLANDSIS"
529   src_dirs="$src_dirs phy${physique}/inlandsis"
530fi
531
532
533if [[ "$rad" == "rrtm" ]]
534then
535   CPP_KEY="$CPP_KEY CPP_RRTM"
536   src_dirs="$src_dirs phy${physique}/rrtm"
537fi
538if [[ "$rad" == "ecrad" ]]
539then
540   CPP_KEY="$CPP_KEY CPP_ECRAD"
541   src_dirs="$src_dirs phy${physique}/ecrad"
542fi
543
544if [[ "$dust" == "true" ]]
545then
546   CPP_KEY="$CPP_KEY CPP_Dust"
547   src_dirs="$src_dirs phy${physique}/Dust"
548fi
549
550if [[ "$strataer" == "true" ]]
551then
552   CPP_KEY="$CPP_KEY CPP_StratAer"
553   src_dirs="$src_dirs phy${physique}/StratAer"
554fi
555
556#add new ocean skin modelisation to source dir by default
557
558src_dirs="$src_dirs phy${physique}/Ocean_skin"
559
560
561INCLUDE="$INCLUDE ${NETCDF_INCDIR}"
562LIB="$LIB ${NETCDF_LIBDIR} ${NETCDF_LIB}"
563
564########################################################################
565# calcul du nombre de dimensions
566########################################################################
567
568
569dim_full=$dim
570dim=`echo $dim | sed -e 's/[^0-9]/ /g'` 
571set $dim
572dimc=$#
573echo calcul de la dimension
574echo dim $dim
575echo dimc $dimc
576
577########################################################################
578# Gestion des dimensions du modele.
579# on cree ou remplace le fichier des dimensions
580########################################################################
581
582cd $LIBFGCM/grid
583if [[ -f dimensions.h ]]
584then
585  echo 'ATTENTION: vous etes sans doute en train de compiler le modele par ailleurs'
586  echo "Attendez que la premiere compilation soit terminee pour relancer la suivante."
587  echo "Si vous etes sur que vous ne compilez pas le modele par ailleurs,"
588  echo  vous pouvez continuer en repondant oui.
589  echo "Voulez-vous vraiment continuer?"
590  echo ""
591  echo "WARNING: you are probably already compiling the model somewhere else."
592  echo "Wait until the first compilation is finished before launching this one."
593  echo "If you are sure that you are not compiling elsewhere, just answer "
594  echo "yes (or 'oui') to the question below to proceed."
595  echo "Do you wish to continue?"
596  read reponse
597  if [[ $reponse == "oui" || $reponse == "yes" ]]
598  then
599    \rm -f $LIBFGCM/grid/dimensions.h
600  else
601    exit
602  fi
603fi
604
605cd $LIBFGCM/grid/dimension
606./makdim $dim
607if (($? != 0))
608then
609    exit 1
610fi
611
612cat $LIBFGCM/grid/dimensions.h
613cd $LMDGCM
614
615########################################################################
616# Differentes dynamiques (3d, 2d, 1d)
617########################################################################
618
619if (( $dimc == 3 )) ; then
620   src_dirs="$src_dirs $filtre dyn3d_common dyn3d${FLAG_PARA}"
621   if [[ $physique != "nophys" ]] ; then
622     src_dirs="$src_dirs dynphy_lonlat dynphy_lonlat/phy${phys_root}"
623     libdyn_phy="-ldynphy_lonlat"
624     LIBDYN_PHYS='$(LIBO)/libdynphy_lonlat.a'
625     INCLUDE="$INCLUDE "'-I$(LIBF)/dynphy_lonlat'
626     INCLUDE="$INCLUDE "'-I$(LIBF)/dynphy_lonlat/'"phy${phys_root}"
627   fi
628   cd $LIBFGCM/grid
629   \rm fxyprim.h
630   cp -p fxy_${grille}.h fxyprim.h
631   filtre="FILTRE=$filtre"
632   INCLUDE="$INCLUDE "'-I$(LIBF)/dyn3d${FLAG_PARA} -I$(LIBF)/dyn3d_common '
633elif (( $dimc == 2 )) ; then
634   src_dirs="$src_dirs dyn2d"
635   filtre="FILTRE= L_FILTRE= "
636   INCLUDE="$INCLUDE "'-I$(LIBF)/dyn2d'
637elif (( $dimc == 1 )) ; then
638   #src_dirs="$src_dirs dyn3d dyn3d_common filtrez"
639   src_dirs="$src_dirs phy${physique}/dyn1d"
640   CPP_KEY="$CPP_KEY CPP_1D"
641   filtre="L_DYN= DYN= FILTRE= L_FILTRE= "
642   #INCLUDE="$INCLUDE "'-I$(LIBF)/dyn3d -I$(LIBF)/dyn3d_common ' # Pas tres propre
643   INCLUDE="$INCLUDE "' -I$(LIBF)/phy'"$physique"'/dyn1d'
644else
645   echo Dimension dimc=$dimc pas prevu ; exit
646fi
647
648cd $LMDGCM
649
650########################################################################
651# library directory name:
652########################################################################
653
654nomlib=`echo ${arch}_${physique}_${rad}_${dim_full}_${grille}_${compil_mod}_parall${parallel}_${CPP_KEY}_${FLAG_PARA} | sed -e 's/ //g' -e 's/-//g ' | sed -e 's/CPP_//g'`
655echo "Path to library: "$nomlib
656
657########################################################################
658#  Cleanup for a full recompilation, if requested
659########################################################################
660
661if [[ $full == "full" ]]
662then
663# remove makefile and librairies
664  echo "-full option: recompiling from scratch"
665  \rm -f makefile
666  \rm -rf "${LIBOGCM}/${nomlib}"
667fi
668
669########################################################################
670#  Avant de lancer le make, on recree le makefile si necessaire
671########################################################################
672########################################################################
673# c'est a dire dans 3 cas:
674# 1. si la liste des fichiers .F et .h a ete modifiee depuis la
675#    derniere creation du makefile
676# 2. si le fichier contenant cette liste "liste_des_sources"
677#    n'existe pas.
678# 3. Si le makefile n'existe pas.
679########################################################################
680cd $LMDGCM
681
682
683if [[ -r .makelmdz ]]
684then
685old_lmdz_configuration=$(cat .makelmdz )
686else
687old_lmdz_configuration=""
688fi
689lmdz_configuration="$src_dirs"
690if [[ "$lmdz_configuration" != "$old_lmdz_configuration" ]]
691then
692  configuration_change="true"
693else
694  configuration_change="false"
695fi
696
697mkdir -p make_dir
698suf_make=`echo $src_dirs | sed -e 's/\//_/g' -e 's/ /_/g'`
699echo suf_make $suf_make
700
701########################################################################
702# (re)Creation du makefile
703########################################################################
704
705echo "Controle de la necessite de recreer le makefile"
706\rm tmp77 tmp90
707for dir in $src_dirs ; do
708   # On recupere la liste de tous les subroutine, use et include pour
709   # vérifier que les dépendense n'ont pas changé et reconstuire le
710   # makefile le cas échéant
711   # On enleve tout apres ONLy et on met un "uniq" pour que ca ne recrée pas
712   # le makefile si on se contente d'ajouter des lignes dans le ONLY
713   exclude="replay automatic include"
714   for str in subroutine "use " "include " ; do
715      grep -i "$str" libf/$dir/*.[Fh] | sed -e "/$exclude/d" | cut -d\( -f1 | sed -e 's/[Oo][Nn][Ll][Yy].*.$//' | uniq >> tmp77
716      grep -i "$str" libf/$dir/*.F90  | sed -e "/$exclude/d" | cut -d\( -f1 | sed -e 's/[Oo][Nn][Ll][Yy].*.$//' | uniq >> tmp90
717   done
718done
719
720liste77=make_dir/liste_des_sources_f77_$suf_make
721liste90=make_dir/liste_des_sources_f90_$suf_make
722makefile=make_dir/makefile_$suf_make
723
724if [[ $configuration_change == "true" || ! ( -r $makefile ) || ! ( -r $liste90 ) || ! ( -r $liste77 ) || ` diff tmp77 $liste77 | wc -w ` -ne 0 || ` diff tmp90 $liste90 | wc -w ` -ne 0 ]]
725then
726  echo "les fichiers suivants ont ete crees ou detruits"
727  echo "ou les fichiers suivants sont passes ou ne sont plus en Fortran 90"
728  diff $liste77 tmp77
729  diff $liste90 tmp90
730  \cp -f tmp77 $liste77
731  \cp -f tmp90 $liste90
732  echo "Recreating the makefile"
733  echo "src_dirs: $src_dirs"
734  ./create_make_gcm $src_dirs > tmp
735  \mv -f tmp $makefile
736  echo "New makefile created"
737else
738  echo Pas besoin de recreer le makefile
739fi
740
741
742ln -sf $makefile makefile
743echo "$lmdz_configuration" > .makelmdz
744
745#################################################################
746# Preparation de l'execution de la comande make
747#################################################################
748
749source_code=${code}.F
750dirmain=dyn${dimc}d${FLAG_PARA}
751if [[ -r $LMDGCM/libf/dyn${dimc}d${FLAG_PARA}/${code}.F90 ]]
752then
753  source_code=${code}.F90
754elif [[ -r $LMDGCM/libf/phy$physique/${code}.F90 ]] ; then
755  dirmain=phy$physique
756  source_code=${code}.F90
757elif [[ -r $LMDGCM/libf/dynphy_lonlat/phy$phys_root/${code}.F90 ]] ; then
758  dirmain="dynphy_lonlat/phy${phys_root}"
759  source_code=${code}.F90
760elif [[ -r $LMDGCM/libf/phy$physique/dyn1d/${code}.F90 ]] ; then
761  dirmain=phy$physique/dyn1d
762  source_code=${code}.F90
763fi
764
765if [[ ! -d "${LIBOGCM}/${nomlib}" ]]
766then
767  mkdir ${LIBOGCM}/${nomlib}
768  # check we indeed managed to create the directory
769  if [[ ! $? ]]
770  then
771    echo "Error: could not create directory ${LIBOGCM}/${nomlib}"
772    exit
773  fi
774fi
775
776# where module files are created
777mod_loc_dir=$localdir
778
779if [[ "$physique" != "nophys" ]]
780then
781  INCLUDE="$INCLUDE"' -I$(LIBF)/phy'"$physique"
782fi
783INCLUDE="$INCLUDE"' -I'${LIBOGCM}/${nomlib}
784
785# ranlib utility (check it exists or else default to ls)
786if [[ `which ranlib > /dev/null 2>&1 ; echo $?` -eq 0 ]]
787then
788  ranlib="ranlib"
789else
790  ranlib="ls"
791fi
792
793# add CPP keys to COMPIL_FLAGS
794# (but first add -D before all CPP_KEY items)
795cpp_definitions=`echo $CPP_KEY | sed -e 's/[A-Za-z_=0-9]*/-D&/g'`
796# (but add a -WF,-D before all CPP_KEY items) => for xlf on Vargas
797if [[ "${fcompiler:0:3}" == "xlf" ]]
798then
799cpp_definitions=`echo $CPP_KEY | sed -e 's/[A-Za-z_=0-9]*/-WF,-D&/g'`
800fi
801COMPIL_FFLAGS="${COMPIL_FFLAGS} ${cpp_definitions}"
802
803#################################################################
804# Execution du make
805#################################################################
806echo $makecommand RANLIB=$ranlib -f $LMDGCM/makefile \
807OPTION_DEP="$opt_dep" OPTION_LINK="$LIB ${PARA_LD}" \
808OPTIM90="${COMPIL_FFLAGS} ${PARA_FFLAGS}" \
809OPTIMTRU90="${COMPIL_FFLAGS} ${PARA_FFLAGS}" \
810OPTIM="${COMPIL_FFLAGS} ${PARA_FFLAGS}" \
811INCLUDE="$INCLUDE" \
812$filtre \
813LIBO=${LIBOGCM}/${nomlib} \
814"PHYS=$physique" \
815LIBPHY=${LIBPHY} \
816LIBPHY_COMMON=${LIBPHY_COMMON} \
817LIBDYN_PHYS=${LIBDYN_PHYS} \
818DIM=$dimc \
819FLAG_PARA=$FLAG_PARA \
820L_PHY="$lib_phy" \
821L_DYN_PHY="$libdyn_phy" \
822L_ADJNT=$adjnt \
823L_COSP="$lcosp" \
824L_COSP2="$lcosp2" \
825L_COSPV2="$lcospv2" \
826L_CHIMIE="$libchimie" \
827LOCAL_DIR="$localdir"  \
828F77="$fcompiler" \
829F90="$fcompiler" \
830OPLINK="$LIB" \
831LINK="$linker" \
832GCM="$LMDGCM" \
833MOD_LOC_DIR=$mod_loc_dir \
834MOD_SUFFIX="mod" \
835AR=$arcommand \
836ARFLAGS="$arflags" \
837DIRMAIN=$dirmain \
838SOURCE=$source_code \
839PROG=$code
840
841$makecommand RANLIB=$ranlib -f $LMDGCM/makefile \
842OPTION_DEP="$opt_dep" OPTION_LINK="$LIB ${PARA_LD}" \
843OPTIM90="${COMPIL_FFLAGS} ${PARA_FFLAGS}" \
844OPTIMTRU90="${COMPIL_FFLAGS} ${PARA_FFLAGS}" \
845OPTIM="${COMPIL_FFLAGS} ${PARA_FFLAGS}" \
846INCLUDE="$INCLUDE" \
847$filtre \
848LIBO=${LIBOGCM}/${nomlib} \
849"PHYS=$physique" \
850LIBPHY=${LIBPHY} \
851LIBPHY_COMMON=${LIBPHY_COMMON} \
852LIBDYN_PHYS=${LIBDYN_PHYS} \
853DIM=$dimc \
854FLAG_PARA=$FLAG_PARA \
855L_PHY="$lib_phy" \
856L_DYN_PHY="$libdyn_phy" \
857L_ADJNT=$adjnt \
858L_COSP="$lcosp" \
859L_COSP2="$lcosp2" \
860L_COSPV2="$lcospv2" \
861L_CHIMIE="$libchimie" \
862LOCAL_DIR="$localdir"  \
863F77="$fcompiler" \
864F90="$fcompiler" \
865OPLINK="$LIB" \
866LINK="$linker" \
867GCM="$LMDGCM" \
868MOD_LOC_DIR=$mod_loc_dir \
869MOD_SUFFIX="mod" \
870AR=$arcommand \
871ARFLAGS="$arflags" \
872DIRMAIN=$dirmain \
873SOURCE=$source_code \
874PROG=$code
875
876
877if [[ -r $LIBFGCM/grid/dimensions.h ]]
878then
879  # Cleanup: remove dimension.h file
880  \rm -f $LIBFGCM/grid/dimensions.h
881fi
Note: See TracBrowser for help on using the repository browser.