Changeset 24380
- Timestamp:
- 11/21/19 15:58:21 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/etc/environment.sh
r24332 r24380 188 188 export MPI_DIR 189 189 export MPI_INC_DIR="$MPI_DIR/include" 190 path_prepend "$MPI_DIR/bin" 190 path_prepend "${MPI_DIR}/bin" 191 cpath_prepend "${MPI_DIR}/include" 191 192 ld_library_path_prepend "$MPI_DIR/lib" 192 193 fi … … 200 201 if [ -d "$PETSC_DIR" ]; then 201 202 export PETSC_DIR 202 ld_library_path_append "$ PETSC_DIR/lib"203 ld_library_path_append "${PETSC_DIR}/lib" 203 204 fi 204 205 … … 347 348 path_append "$ASPELL_DIR/bin" 348 349 350 NETCDF_DIR="${ISSM_DIR}/externalpackages/netcdf/install" 351 if [ -d "${NETCDF_DIR}" ]; then 352 path_append "${NETCDF_DIR}/bin" 353 cpath_append "${NETCDF_DIR}/include" 354 library_path_append "${NETCDF_DIR}/lib" 355 dyld_library_path_append "${NETCDF_DIR}/lib" 356 ld_library_path_append "${NETCDF_DIR}/lib" 357 fi 358 359 NETCDF_CXX_DIR="${ISSM_DIR}/externalpackages/netcdf-cxx/install" 360 if [ -d "${NETCDF_CXX_DIR}" ]; then 361 ld_library_path_append "${NETCDF_CXX_DIR}/lib" 362 fi 363 349 364 HDF5_DIR="${ISSM_DIR}/externalpackages/hdf5/install" 350 365 if [ -d "${HDF5_DIR}" ]; then 351 c _include_path_append "${HDF5_DIR}/include"366 cpath_append "${HDF5_DIR}/include" 352 367 library_path_append "${HDF5_DIR}/lib" 353 368 dyld_library_path_append "${HDF5_DIR}/lib" 354 369 ld_library_path_append "${HDF5_DIR}/lib" 355 fi356 357 NETCDF_DIR="${ISSM_DIR}/externalpackages/netcdf/install"358 if [ -d "${NETCDF_DIR}" ]; then359 path_append "${NETCDF_DIR}/bin"360 c_include_path_append "${NETCDF_DIR}/include"361 library_path_append "${NETCDF_DIR}/lib"362 dyld_library_path_append "${NETCDF_DIR}/lib"363 ld_library_path_append "${NETCDF_DIR}/lib"364 fi365 366 NETCDF_CXX_DIR="${ISSM_DIR}/externalpackages/netcdf-cxx/install"367 if [ -d "${NETCDF_CXX_DIR}" ]; then368 ld_library_path_append "${NETCDF_CXX_DIR}/lib"369 370 fi 370 371 -
issm/trunk-jpl/externalpackages/gdal/install-3.0-netcdf.sh
r24325 r24380 6 6 # 7 7 VER="3.0.2" 8 HDF5_ROOT="${ISSM_DIR}/externalpackages/hdf5/install" 9 NETCDF_ROOT="${ISSM_DIR}/externalpackages/netcdf/install" 8 10 PROJ_ROOT="${ISSM_DIR}/externalpackages/proj/install" 9 11 … … 26 28 ./configure \ 27 29 --prefix="${ISSM_DIR}/externalpackages/gdal/install" \ 30 --with-hdf5="${HDF5_ROOT}" \ 31 --with-netcdf="${NETCDF_ROOT}" \ 28 32 --with-proj="${PROJ_ROOT}" 29 33 … … 36 40 make -j $1 install 37 41 fi 42 43 # Return to initial directory 44 cd .. -
issm/trunk-jpl/externalpackages/gdal/install-3.0-python-netcdf.sh
r24325 r24380 7 7 # 8 8 9 # #Constants9 # Constants 10 10 # 11 11 VER="3.0.2" 12 HDF5_ROOT="${ISSM_DIR}/externalpackages/hdf5/install" 13 NETCDF_ROOT="${ISSM_DIR}/externalpackages/netcdf/install" 12 14 PROJ_ROOT="${ISSM_DIR}/externalpackages/proj/install" 13 15 … … 31 33 --prefix="${ISSM_DIR}/externalpackages/gdal/install" \ 32 34 --with-python \ 35 --with-hdf5="${HDF5_ROOT}" \ 36 --with-netcdf="${NETCDF_ROOT}" \ 33 37 --with-proj="${PROJ_ROOT}" 34 38 … … 41 45 make -j $1 install 42 46 fi 47 48 # Return to initial directory 49 cd .. -
issm/trunk-jpl/externalpackages/gdal/install-3.0-python.sh
r24325 r24380 43 43 make -j $1 install 44 44 fi 45 46 # Return to initial directory 47 cd .. -
issm/trunk-jpl/externalpackages/gdal/install-3.0.sh
r24325 r24380 30 30 --with-proj="${PROJ_ROOT}" 31 31 32 32 33 # Compile and install 33 34 if [ $# -eq 0 ]; then … … 38 39 make -j $1 install 39 40 fi 41 42 # Return to initial directory 43 cd .. -
issm/trunk-jpl/externalpackages/hdf5/install-1.10-parallel-with_tests.sh
r24321 r24380 42 42 make -j $1 install 43 43 fi 44 45 # Return to initial directory 46 cd .. -
issm/trunk-jpl/externalpackages/hdf5/install-1.10-parallel.sh
r24321 r24380 40 40 make -j $1 install 41 41 fi 42 43 # Return to initial directory 44 cd .. -
issm/trunk-jpl/externalpackages/hdf5/install-1.10-with_tests.sh
r24321 r24380 37 37 make -j $1 install 38 38 fi 39 40 # Return to initial directory 41 cd .. -
issm/trunk-jpl/externalpackages/hdf5/install-1.10.sh
r24321 r24380 35 35 make -j $1 install 36 36 fi 37 38 # Return to initial directory 39 cd .. -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-with_tests.sh
r24321 r24380 55 55 make -j $1 install 56 56 fi 57 58 # Return to initial directory 59 cd .. -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel.sh
r24321 r24380 41 41 ./configure \ 42 42 --prefix="${ISSM_DIR}/externalpackages/netcdf/install" \ 43 --dis bable-shared \43 --disable-shared \ 44 44 --disable-doxygen 45 45 … … 52 52 make -j $1 install 53 53 fi 54 55 # Return to initial directory 56 cd .. -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-with_tests.sh
r24321 r24380 51 51 make -j $1 install 52 52 fi 53 54 # Return to initial directory 55 cd .. -
issm/trunk-jpl/externalpackages/netcdf/install-4.7.sh
r24321 r24380 49 49 make -j $1 install 50 50 fi 51 52 # Return to initial directory 53 cd .. -
issm/trunk-jpl/jenkins/linux64_ross_se
r24333 r24380 76 76 NUMCPUS_INSTALL=8 77 77 78 #number of cpus used in the nightly runs. (pb of access to all_vertices.txt if more than 1) 78 # Number of cpus used in the nightly runs 79 # 80 # NOTE: Possible problem of access to all_vertices.txt if more than 1. 81 # 79 82 NUMCPUS_RUN=8 80 83
Note:
See TracChangeset
for help on using the changeset viewer.