source: XIOS/trunk/make_xios @ 2338

Last change on this file since 2338 was 2164, checked in by ymipsl, 3 years ago

Adapt make_xios to accept new version of FCM (requiere perl 5.1)
new flag :
--fcm old --> old version of FCM (default)
--fcm new --> new version of FCM (default)

YM

  • Property svn:executable set to *
File size: 9.9 KB
RevLine 
[248]1#!/bin/bash
2
3install_dir=$PWD
[287]4compil_full="false"
5use_oasis="false"
[475]6oasis="oasis3_mct"
[1497]7build_path="./"
8build_dir="./"
9build_suffixed="false"
[1449]10use_extern_boost="false"
[1453]11use_extern_blitz="false"
[402]12use_memtrack="false"
[313]13job="1"
[381]14netcdf_lib="netcdf4_par"
15compil_mode="prod"
[1497]16arch_path=$PWD/"arch"
17arch_default_path=$PWD/"arch"
[1450]18arch_defined="FALSE"
19arch_path_defined="FALSE"
[2164]20fcm_version=old
[248]21
22# Traitement de la ligne de commande
23while (($# > 0))
24   do
25      case $1 in
[383]26         "-h"|"--help"|"-help")
[374]27            echo "make_xios - installs XIOS on your architecture"
28            echo "make_xios [options]"
29            echo "options :"
[381]30            echo "       [--prod] : compilation in production mode (default)"
[374]31            echo "       [--dev] : compilation in development mode"
32            echo "       [--debug] : compilation in debug mode"
33            echo "       --arch arch : to choose target architecture"
34            echo "       [--avail] : to know available target architectures "
35            echo "       [--full] : to generate dependencies and recompile from scratch"
[1497]36            echo "       [--use_oasis 'oasis3' 'oasis3_mct' : default oasis3_mct] : to use Oasis coupler"
[1498]37        echo "       [--build_path : absolute path to the build directory"
[1497]38        echo "       [--build_dir : name of the build directory"
39        echo "       [--build_suffixed : generate automatically suffixed name of the build directory (e.g. config_X64_CURIE_prod)"
[1449]40        echo "       [--use_extern_boost : to use external boost library"
[1453]41        echo "       [--use_extern_blitz : to use external blitz library"
[374]42            echo "       [--doc] : to generate Doxygen documentation (not available yet)"
43            echo "       [--job ntasks] : to use parallel compilation with ntasks"
[410]44            echo "       [--netcdf_lib 'netcdf4_par'/'netcdf4_seq'/'netcdf4_internal' : default netcdf4_par] : choice of netcdf library"
[402]45            echo "       [--memtrack] : tracking memory leak - developper only"
[2164]46            echo "       [--fcm] : fcm version compatibility : 'new'/'old'"
[374]47            echo "Example : ./make_xios --prod --arch PW6_VARGAS"
48            echo "Example : ./make_xios --avail"
[248]49            exit;;
50         "--prod")  compil_mode="prod"  ; shift ;;
51         "--dev")   compil_mode="dev"   ; shift ;;
52         "--debug") compil_mode="debug" ; shift ;;
[1450]53         "--arch")  arch=$2     ; arch_defined="TRUE"; shift ; shift ;;
54         "--arch_path")  arch_path=$2     ; arch_path_defined="TRUE"; shift ; shift ;;
[383]55         "--avail") ls arch/*.fcm | cut -d"-" -f2 | cut -d"." -f1 ; exit ;;
[313]56         "--full")  compil_full="true"  ; shift ;;
[475]57         "--use_oasis")  use_oasis="true" oasis=$2 ; shift ; shift  ;;
[1497]58         "--build_path")  build_path=$2     ; shift ; shift ;;
59         "--build_dir")  build_dir=$2     ; shift ; shift ;;
60         "--build_suffixed")  build_suffixed="true" ; shift  ;;
[1449]61         "--use_extern_boost")  use_extern_boost="true" ; shift  ;;
[1453]62         "--use_extern_blitz")  use_extern_blitz="true" ; shift  ;;
[248]63         "--doc")   doc="true"          ; shift ;;
[313]64         "--job")   job=$2              ; shift ; shift ;;
[381]65         "--netcdf_lib")   netcdf_lib=$2 ; shift ; shift ;;
[1450]66         "--memtrack")  use_memtrack="true" memtrack=$2  ; shift ; shift ;;
[2164]67         "--fcm")       fcm_version=$2  ; shift ; shift ;;
[248]68         *)         code="$1"           ; shift ;;
69      esac
70   done
71
[374]72# Installation des sources
[377]73nb_files_gz=`ls $install_dir/tools/archive | grep tar.gz | wc -l`
74if [ ${nb_files_gz} -ne 0 ]               
[376]75then
[377]76    echo -e "- uncompress archives ..."         
[376]77    for tarname in `ls $install_dir/tools/archive/*.tar.gz` ; do
[1458]78        if  ( [[ ${tarname} == "${install_dir}/tools/archive/boost.tar.gz" ]] && [[ "$use_extern_boost" == "true" ]] ) || ( [[ ${tarname} == "${install_dir}/tools/archive/blitz.tar.gz" ]] && [[ "$use_extern_blitz" == "true" ]] )
79        then
80                continue
81        fi
[376]82        gunzip -f "$tarname"
83        tar -xf ${tarname%.gz}
84    done
85fi
[374]86
[1498]87# Definition of the root directory of the build
88
89if [[ "$build_path" == "./" ]]; then
90  install_dir=$PWD
91else
92  install_dir=${build_path}
93fi
94
[1497]95if [[ "$build_suffixed" == "true" ]]; then
[1498]96    install_dir="${install_dir}/config_${arch}_${compil_mode}"
[1497]97else
[1498]98    install_dir="${install_dir}/${build_dir}"
[1497]99fi
[1498]100
[1497]101mkdir -p $install_dir
102
103rm -f ${PWD}/bld_dir.cfg
104echo "inc    ${install_dir}/arch.fcm" >> ${PWD}/bld_dir.cfg
105echo "inc    ${install_dir}/config.fcm" >> ${PWD}/bld_dir.cfg
106echo "dir::root  ${install_dir}"   >> ${PWD}/bld_dir.cfg
107
[248]108# Vérification de la présence d'un identifiant d'architecture.
109
[281]110###############################################################
[374]111# lecture des chemins propres a l'architecture de la machine #
[281]112#           et configuration de l'environnement              #
113###############################################################
114
115rm -f .void_file
116echo > .void_file
117rm -rf .void_dir
118mkdir .void_dir
119
[1450]120if [[ "$arch_defined" == "TRUE" ]]
121then
[1497]122  rm -f ${install_dir}/arch.path
123  rm -f ${install_dir}/arch.fcm
124  rm -f ${install_dir}/arch.env
[281]125
[1450]126  if test -f $arch_path/arch-${arch}.path
127  then
[1497]128    ln -s $arch_path/arch-${arch}.path ${install_dir}/arch.path
[1450]129  elif test -f $arch_default_path/arch-${arch}.path
130  then
[1497]131    ln -s $arch_default_path/arch-${arch}.path ${install_dir}/arch.path
[1450]132  fi
133       
134  if test -f $arch_path/arch-${arch}.fcm
135  then
[1497]136    ln -s $arch_path/arch-${arch}.fcm ${install_dir}/arch.fcm
[1450]137  elif test -f $arch_default_path/arch-${arch}.fcm
138  then
[1497]139    ln -s $arch_default_path/arch-${arch}.fcm ${install_dir}/arch.fcm
[1450]140  fi
[281]141
[1450]142  if test -f $arch_path/arch-${arch}.env
143  then
[1497]144    ln -s $arch_path/arch-${arch}.env ${install_dir}/arch.env
[1450]145  elif test -f $arch_default_path/arch-${arch}.env
146  then
[1497]147    ln -s $arch_default_path/arch-${arch}.env ${install_dir}/arch.env
[281]148  else
[1497]149    ln -s .void_file ${install_dir}/arch.env
[1450]150  fi
[1497]151  source ${install_dir}/arch.env
152  source ${install_dir}/arch.path
[1450]153else
[381]154      echo "Please choose a target achitecture --> list all available architecture using make_xios --avail!"
[248]155      exit 1
156fi
157
158# Vérification de la présence d'un mode de compilation.
159
160if [[ "$compil_mode" == "prod" ]]
161   then
162      COMPIL_CFLAGS="%PROD_CFLAGS"
163      COMPIL_FFLAGS="%PROD_FFLAGS"
164elif [[ "$compil_mode" == "dev" ]]
165   then
166      COMPIL_CFLAGS="%DEV_CFLAGS"
167      COMPIL_FFLAGS="%DEV_FFLAGS"
168elif [[ "$compil_mode" == "debug" ]]
169   then
170      COMPIL_CFLAGS="%DEBUG_CFLAGS"
171      COMPIL_FFLAGS="%DEBUG_FFLAGS"
172fi
173
[410]174rm -r $PWD/extern/netcdf4
175
[381]176if [[ "$netcdf_lib" == "netcdf4_par" ]]
177   then
[410]178     ln -s $PWD/.void_dir $PWD/extern/netcdf4
[591]179     XIOS_CPPKEY="$XIOS_CPPKEY USING_NETCDF_PAR"
[381]180elif [[ "$netcdf_lib" == "netcdf4_seq" ]]
181  then
[410]182    ln -s $PWD/.void_dir $PWD/extern/netcdf4
183elif [[ "$netcdf_lib" == "netcdf4_internal" ]]
184  then
185    ln -s $PWD/extern/src_netcdf4 $PWD/extern/netcdf4
[591]186    XIOS_CPPKEY="$XIOS_CPPKEY USING_NETCDF_PAR USING_NETCDF_INTERNAL"
[410]187    export NETCDF_INCDIR="-I${PWD}/extern/netcdf4"
188    export NETCDF_LIBDIR=""
189    export NETCDF_LIB=""
[381]190else
[410]191   echo "Bad choice for --netcdf_lib argument : choose between 'netcdf4_par','netcdf4_seq' or 'netcdf4_internal'"
[381]192   exit
193fi
194
[287]195if [[ "$use_oasis" == "true" ]]
196   then
[475]197    if [[ "$oasis" == "oasis3_mct" ]]
198    then
[591]199        XIOS_CPPKEY="$XIOS_CPPKEY USE_OMCT"
[475]200    elif [[ "$oasis" == "oasis3"  ]]
201    then
[591]202        XIOS_CPPKEY="$XIOS_CPPKEY USE_OASIS"
[475]203        OASIS_INCDIR="-I$PWD/../../prism/X64/build/lib/psmile.MPI1"
204        OASIS_LIBDIR="-L$PWD/../../prism/X64/lib"
205        OASIS_LIB="-lpsmile.MPI1 -lmpp_io"
206    else
207        echo "Bad choice for --use_oasis argument : choose between 'oasis3','oasis3_mct'"
208        exit
209    fi
210    NETCDF_LIB="-lnetcdff -lnetcdf"
[591]211    XIOS_FINCDIR="$OASIS_INCDIR $XIOS_FINCDIR"
212    XIOS_LIB="$OASIS_LIBDIR $OASIS_LIB $XIOS_LIB"
[1450]213fi 
[362]214
[1449]215# Setting path for boost
216if [[ "$use_extern_boost" == "true" ]]
217then
[1458]218   rm -r $PWD/extern/boost
[1449]219   ln -s $PWD/.void_dir $PWD/extern/boost
220else
221   export BOOST_INCDIR="-I${PWD}/extern/boost"
222   export BOOST_LIBDIR=""
223   export BOOST_LIB=""
224fi
225
[1453]226# Setting path for blitz
227if [[ "$use_extern_blitz" == "true" ]]
228then
[1458]229   rm -r $PWD/extern/blitz
[1453]230   ln -s $PWD/.void_dir $PWD/extern/blitz
231else
[1510]232   echo "src::blitz $PWD/extern/blitz/src" >> ${PWD}/bld_dir.cfg
[1453]233   export BLITZ_INCDIR="-I${PWD}/extern/blitz"
234   export BLITZ_LIBDIR=""
235   export BLITZ_LIB=""
236fi
237
238
[402]239if [[ "$use_memtrack" == "true" ]]
240   then
[591]241   XIOS_CPPKEY="$XIOS_CPPKEY XIOS_MEMTRACK"
[1450]242
243    if [[ "$memtrack" == "light" ]]
244    then
245        XIOS_CPPKEY="$XIOS_CPPKEY XIOS_MEMTRACK_LIGHT"
246    elif [[ "$memtrack" == "FULL"  ]]
247    then
248      XIOS_LIB="$ADDR2LINE_LIBDIR $ADDR2LINE_LIB $XIOS_LIB"
249      XIOS_CPPKEY="$XIOS_CPPKEY XIOS_MEMTRACK_FULL"
250    else
251        echo "Bad choice for --memtrack argument : choose between 'light','full'"
252        exit
253    fi
[402]254fi
255
[1453]256XIOS_CINCDIR="$NETCDF_INCDIR $HDF5_INCDIR $MPI_INCDIR $BOOST_INCDIR $BLITZ_INCDIR"
257XIOS_FINCDIR="$NETCDF_INCDIR $XIOS_FINCDIR $MPI_INCDIR $BOOST_INCDIR $BLITZ_INCDIR"
[248]258
[591]259XIOS_LIB="$XIOS_LIB $NETCDF_LIBDIR $HDF5_LIBDIR $MPI_LIBDIR $NETCDF_LIB $HDF5_LIB $MPI_LIB"
[248]260
[1497]261rm -f ${install_dir}/config.fcm
262echo "%COMPIL_CFLAGS $COMPIL_CFLAGS" >> ${install_dir}/config.fcm
263echo "%COMPIL_FFLAGS $COMPIL_FFLAGS" >> ${install_dir}/config.fcm
264echo "%CPP_KEY       $XIOS_CPPKEY"   >> ${install_dir}/config.fcm
[248]265
[1497]266echo "%CBASE_INC     $XIOS_CINCDIR" >> ${install_dir}/config.fcm     
267echo "%FBASE_INC     $XIOS_FINCDIR" >> ${install_dir}/config.fcm
268echo "%ARCH_LD       $XIOS_LIB"     >> ${install_dir}/config.fcm
[248]269
[381]270echo "=> Using "$compil_mode" mode for compiling under architecture \""$arch"\" !"
[248]271
272# Création de la documentation doxygen.
273if [[ !(-z $doc) ]]
274   then
[381]275      echo -e "- Create Doxygen documentation (disabled)..."
[248]276      #doxygen -s
277fi
278
279make_dir=$PWD
280
[2164]281if [[ "$fcm_version" == "new" ]]
282then
283  export PATH=$PWD/tools/FCM_NEW/bin:$PATH
284elif [[ "$fcm_version" == "old" ]]
285then
286  export PATH=$PWD/tools/FCM_OLD/bin:$PATH
287else
288  echo "=> Bad option for --fcm flag : "$fcm_version" , only 'new' or 'old' permitted"
289fi
290 
[287]291if [[ "$compil_full" == "true" ]]
292   then
[395]293   fcm build --clean --ignore-lock
294   fcm build -f --ignore-lock -j $job
[287]295else
[395]296  fcm build --ignore-lock -j $job
[287]297fi
[248]298
[601]299build_exit_status=$?
[287]300
[601]301if [[ $build_exit_status == 0 ]]
[287]302  then
[366]303  set nothing
[591]304#    cd $WORKDIR/XIOS_NEMO_COUPLE/modeles/NEMO/WORK
305#    cd $WORKDIR/XIOS_NEMO/modeles/NEMO/WORK
[301]306#    make
[287]307fi
[601]308
309exit $build_exit_status
Note: See TracBrowser for help on using the repository browser.