source: XIOS/dev/XIOS_DEV_CMIP6/make_xios @ 1498

Last change on this file since 1498 was 1498, checked in by oabramkina, 6 years ago

Corrections of r1497.

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