Changeset 24388
- Timestamp:
- 11/22/19 12:22:15 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/etc/environment.sh
r24380 r24388 4 4 # ISSM_DIR and ISSM_ARCH should have been defined already in your shell 5 5 # settings file (i.e. .bashrc, .cshrc). 6 # 7 # TODO: 8 # - Condition all path modifications on existence of external package 'install' 9 # directory 10 # 6 11 7 12 ## Functions … … 159 164 fi 160 165 } #}}} 161 162 # FIXME: during installation packages are installed one by one but163 # environment.sh was sourced before so new packages are NOT in the path. May164 # source environment.sh again with:165 # if [ -z $(echo "$PATH" | grep "$MATLAB_DIR") ]; then export $PATH...; fi166 166 167 167 # Windows compilers: … … 437 437 438 438 #CURL 439 ld_library_path_prepend "${ISSM_DIR}/externalpackages/curl/install/lib" 440 dyld_library_path_prepend "${ISSM_DIR}/externalpackages/curl/install/lib" 441 path_prepend "${ISSM_DIR}/externalpackages/curl/install/bin" 439 CURL_DIR="${ISSM_DIR}/externalpackages/curl/install" 440 if [ -d "${CURL_DIR}" ]; then 441 ld_library_path_prepend "${CURL_DIR}/lib" 442 dyld_library_path_prepend "${CURL_DIR}/lib" 443 path_prepend "${CURL_DIR}/bin" 444 fi 442 445 443 446 #NEOPZ -
issm/trunk-jpl/externalpackages/gmt/configs/Linux/cmake/ConfigUser.cmake
r24328 r24388 136 136 # Set location of NetCDF (can be root directory, path to header file or path 137 137 # to nc-config) [auto]: 138 set (NETCDF_ROOT "$ENV{ISSM_DIR}/externalpackages/ petsc/install")138 set (NETCDF_ROOT "$ENV{ISSM_DIR}/externalpackages/netcdf/install") 139 139 140 140 # Set location of GDAL (can be root directory, path to header file or path to -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-with_tests.sh
r24380 r24388 41 41 ./configure \ 42 42 --prefix="${ISSM_DIR}/externalpackages/netcdf/install" \ 43 --disbable-shared \44 43 --enable-parallel-tests \ 45 44 --disable-doxygen -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel.sh
r24380 r24388 41 41 ./configure \ 42 42 --prefix="${ISSM_DIR}/externalpackages/netcdf/install" \ 43 --disable-shared \44 43 --disable-doxygen 45 44 -
issm/trunk-jpl/jenkins/linux64_ross_se
r24383 r24388 48 48 cmake install.sh 49 49 mpich install-3.2-linux64.sh 50 hdf5 install-1.10 .sh51 netcdf install-4.7 .sh50 hdf5 install-1.10-parallel.sh 51 netcdf install-4.7-parallel.sh 52 52 lapack install-3.8-linux.sh 53 53 petsc install-3.7-linux64.sh … … 80 80 # NOTE: Possible problem of access to all_vertices.txt if more than 1. 81 81 # 82 NUMCPUS_RUN= 182 NUMCPUS_RUN=8 83 83 84 84 #Nightly run options. The matlab routine runme.m will be called
Note:
See TracChangeset
for help on using the changeset viewer.