Ignore:
Timestamp:
05/12/20 11:52:13 (4 years ago)
Author:
ymipsl
Message:

XIOS coupling branch
Some updates.

First coupling test is beginning to work...

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/make_xios

    r1510 r1875  
    1111use_extern_blitz="false" 
    1212use_memtrack="false" 
     13use_tv="false" 
    1314job="1" 
    1415netcdf_lib="netcdf4_par" 
     
    3435            echo "       [--full] : to generate dependencies and recompile from scratch" 
    3536            echo "       [--use_oasis 'oasis3' 'oasis3_mct' : default oasis3_mct] : to use Oasis coupler" 
    36         echo "       [--build_path : absolute path to the build directory" 
    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)" 
    39         echo "       [--use_extern_boost : to use external boost library" 
    40         echo "       [--use_extern_blitz : to use external blitz library" 
     37        echo "       [--build_path] : absolute path to the build directory" 
     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)" 
     40        echo "       [--use_extern_boost] : to use external boost library" 
     41        echo "       [--use_extern_blitz] : to use external blitz library" 
     42        echo "       [--use_tv] : to use totalview data type display" 
    4143            echo "       [--doc] : to generate Doxygen documentation (not available yet)" 
    4244            echo "       [--job ntasks] : to use parallel compilation with ntasks" 
     
    5961         "--use_extern_boost")  use_extern_boost="true" ; shift  ;; 
    6062         "--use_extern_blitz")  use_extern_blitz="true" ; shift  ;; 
     63         "--use_tv")  use_tv="true" ; shift  ;; 
    6164         "--doc")   doc="true"          ; shift ;; 
    6265         "--job")   job=$2              ; shift ; shift ;; 
     
    233236fi 
    234237 
     238if [[ "$use_tv" == "true" ]] 
     239then 
     240   echo "src::tv_data_display $PWD/extern/tv_data_display" >> ${PWD}/bld_dir.cfg 
     241fi 
     242 
    235243 
    236244if [[ "$use_memtrack" == "true" ]] 
Note: See TracChangeset for help on using the changeset viewer.