Changeset 25868
- Timestamp:
- 12/14/20 13:29:34 (4 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/etc/environment.sh
r25866 r25868 251 251 fi 252 252 253 LAPACK_ROOT="${ISSM_EXT_DIR}/lapack/install" 253 # NOTE: Check *must* come before PETSc as we prefer packages installed via 254 # PETSc 255 # 256 LAPACK_ROOT="${ISSM_DIR}/lapack/install" 254 257 if [ -d "${LAPACK_ROOT}" ]; then 255 258 ld_library_path_append "${LAPACK_ROOT}/lib" 259 fi 260 261 # NOTE: Check *must* come before PETSc as we prefer packages installed via 262 # PETSc 263 # 264 ZLIB_ROOT="${ISSM_DIR}/zlib/install" 265 if [ -d "${ZLIB_ROOT}" ]; then 266 export ZLIB_ROOT # Used in installation of NetCDF, GDAL, GMT 267 ld_library_path_append "${ZLIB_ROOT}/lib" 256 268 fi 257 269 … … 302 314 if ls ${PETSC_ROOT}/lib/libz.* 1> /dev/null 2>&1; then 303 315 export ZLIB_ROOT="${PETSC_ROOT}" # Used in installation of NetCDF, GDAL 316 ld_library_path_append "${PETSC_ROOT}/lib" 304 317 fi 305 318 fi … … 389 402 fi 390 403 391 ZLIB_ROOT="${ISSM_EXT_DIR}/zlib/install"392 if [ -d "${ZLIB_ROOT}" ]; then393 export ZLIB_ROOT # Used in installation of NetCDF, GDAL, GMT394 fi395 396 404 SQLITE_ROOT="${ISSM_EXT_DIR}/sqlite/install" 397 405 if [ -d "${SQLITE_ROOT}" ]; then -
issm/trunk-jpl/externalpackages/curl/install-7-linux-static.sh
r25860 r25868 31 31 --disable-manual \ 32 32 --disable-verbose \ 33 --disable-ldap \ 34 --disable-ldaps \ 35 --with-zlib="${ZLIB_ROOT}" \ 33 36 --without-libidn2 34 37 -
issm/trunk-jpl/externalpackages/curl/install-7-linux-with_tests.sh
r25860 r25868 30 30 --disable-dependency-tracking \ 31 31 --disable-manual \ 32 --disable-verbose 32 --disable-verbose \ 33 --with-zlib="${ZLIB_ROOT}" 33 34 34 35 # Compile and install -
issm/trunk-jpl/externalpackages/curl/install-7-linux.sh
r25860 r25868 30 30 --disable-dependency-tracking \ 31 31 --disable-manual \ 32 --disable-verbose 32 --disable-verbose \ 33 --with-zlib="${ZLIB_ROOT}" 33 34 34 35 # Compile and install -
issm/trunk-jpl/externalpackages/curl/install-7-mac-static.sh
r25860 r25868 35 35 --disable-manual \ 36 36 --disable-verbose \ 37 --disable-ldap \ 38 --disable-ldaps \ 39 --with-zlib="${ZLIB_ROOT}" \ 37 40 --without-libidn2 \ 38 41 --with-secure-transport -
issm/trunk-jpl/externalpackages/curl/install-7-mac.sh
r25860 r25868 35 35 --disable-manual \ 36 36 --disable-verbose \ 37 --with-zlib="${ZLIB_ROOT}" \ 37 38 --with-secure-transport 38 39 -
issm/trunk-jpl/externalpackages/gmt/configs/6/static/cmake/ConfigUser.static.cmake
r25745 r25868 157 157 158 158 # Set location of CURL (can be root directory or path to header file) [auto]: 159 set (CURL_ROOT "$ENV{ISSM_DIR}/externalpackages/curl/install")159 #set (CURL_ROOT "curl_install_prefix") 160 160 161 161 # Set location of GLIB component gthread [auto]. This is an optional (and -
issm/trunk-jpl/externalpackages/gmt/install-6-mac-static.sh
r25856 r25868 27 27 export CC=mpicc 28 28 export CURL_INCLUDE_DIRS="${CURL_ROOT}/include" 29 export CURL_LIBRARIES="${CURL_ROOT}/lib/libcurl.a;-framework CoreFoundation;-framework Security;-lldap;-lz" 29 export CURL_LIBRARIES="${CURL_ROOT}/lib/libcurl.a;${ZLIB_ROOT}/lib/libz.a" 30 export LDFLAGS="-framework CoreFoundation -framework Security" 30 31 export PREFIX="${ISSM_DIR}/externalpackages/gmt/install" # NOTE: Need to export this to be picked up by customized ConfigUser.cmake (see below). Set to location where external package should be installed. 31 32
Note:
See TracChangeset
for help on using the changeset viewer.