Changeset 2629 for XIOS3/trunk/make_xios
- Timestamp:
- 04/25/24 15:05:23 (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS3/trunk/make_xios
r2608 r2629 7 7 build_dir="./" 8 8 build_suffixed="false" 9 use_extern_boost="false"10 9 use_extern_blitz="false" 11 10 use_memtrack="false" … … 37 36 echo " [--build_dir : name of the build directory" 38 37 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 38 echo " [--use_extern_blitz : to use external blitz library" 41 39 echo " [--doc] : to generate Doxygen documentation (not available yet)" … … 58 56 "--build_dir") build_dir=$2 ; shift ; shift ;; 59 57 "--build_suffixed") build_suffixed="true" ; shift ;; 60 "--use_extern_boost") use_extern_boost="true" ; shift ;;61 58 "--use_extern_blitz") use_extern_blitz="true" ; shift ;; 62 59 "--doc") doc="true" ; shift ;; … … 75 72 echo -e "- uncompress archives ..." 76 73 for tarname in `ls $install_dir/tools/archive/*.tar.gz` ; do 77 if ( [[ ${tarname} == "${install_dir}/tools/archive/b oost.tar.gz" ]] && [[ "$use_extern_boost" == "true" ]] ) || ( [[ ${tarname} == "${install_dir}/tools/archive/blitz.tar.gz" ]] && [[ "$use_extern_blitz" == "true" ]] )74 if ( [[ ${tarname} == "${install_dir}/tools/archive/blitz.tar.gz" ]] && [[ "$use_extern_blitz" == "true" ]] ) 78 75 then 79 76 continue … … 281 278 # End "Detecting if parallel compression is available" 282 279 283 284 280 # Setting path for boost 285 if [[ "$use_extern_boost" == "true" ]] 286 then 287 rm -r $PWD/extern/boost 288 ln -s $PWD/.void_dir $PWD/extern/boost 289 else 290 export BOOST_INCDIR="-I${PWD}/extern/boost" 291 export BOOST_LIBDIR="" 292 export BOOST_LIB="" 293 fi 281 export BOOST_INCDIR="-I${PWD}/extern/boost_extraction/include" 294 282 295 283 # Setting path for blitz
Note: See TracChangeset
for help on using the changeset viewer.