Changeset 27567
- Timestamp:
- 02/11/23 14:52:36 (2 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 5 deleted
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/gdal/install-3-python-static.sh
r27565 r27567 16 16 export CXXFLAGS="-std=c++11" 17 17 export CXX=mpicxx 18 export LDFLAGS="-L${HDF5_ROOT}/lib" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time 19 export LIBS="-lsqlite3 -lhdf5_hl -lhdf5" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time 18 export LIBS="-lsqlite3 -lhdf5_hl -lhdf5" 20 19 export PREFIX="${ISSM_DIR}/externalpackages/gdal/install" # Need this to properly set destination root for Python libraries on macOS (should not affect Linux build; do not need for this configuration, but including it for consistency) 21 20 … … 45 44 --with-python="python3" \ 46 45 --with-curl="${CURL_ROOT}/bin/curl-config" \ 47 --with-hdf5="${HDF5_ROOT}" \48 46 --with-jpeg=internal \ 49 47 --with-libz="${ZLIB_ROOT}" \ -
issm/trunk-jpl/externalpackages/gdal/install-3-python.sh
r27541 r27567 35 35 --enable-fast-install \ 36 36 --with-python="python3" \ 37 --with-hdf5="${HDF5_ROOT}" \38 37 --with-libz="${ZLIB_ROOT}" \ 39 38 --with-netcdf="${NETCDF_ROOT}" \ -
issm/trunk-jpl/externalpackages/gdal/install-3-static.sh
r27565 r27567 16 16 export CXXFLAGS="-std=c++11" 17 17 export CXX=mpicxx 18 export LDFLAGS="-L${HDF5_ROOT}/lib" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time 19 export LIBS="-lsqlite3 -lhdf5_hl -lhdf5" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time 18 export LIBS="-lsqlite3 -lhdf5_hl -lhdf5" 20 19 export PREFIX="${ISSM_DIR}/externalpackages/gdal/install" # NOTE: Need to export this to properly set destination root for Python libraries on macOS (should not affect Linux build). Set to location where external package should be installed. 21 20 … … 44 43 --with-pic \ 45 44 --with-curl="${CURL_ROOT}/bin/curl-config" \ 46 --with-hdf5="${HDF5_ROOT}" \47 45 --with-jpeg=internal \ 48 46 --with-libz="${ZLIB_ROOT}" \ -
issm/trunk-jpl/externalpackages/gdal/install-3.sh
r27541 r27567 30 30 --prefix="${PREFIX}" \ 31 31 --enable-fast-install \ 32 --with-hdf5="${HDF5_ROOT}" \33 32 --with-libz="${ZLIB_ROOT}" \ 34 33 --with-netcdf="${NETCDF_ROOT}" \ -
issm/trunk-jpl/externalpackages/gmt/configs/6/static/cmake/modules/FindGDAL.cmake
r27565 r27567 150 150 ${NETCDF_ROOT} 151 151 $ENV{NETCDF_ROOT} 152 ${HDF5_ROOT}153 $ENV{HDF5_ROOT}154 152 ${ZLIB_ROOT} 155 153 $ENV{ZLIB_ROOT} -
issm/trunk-jpl/externalpackages/gmt/configs/6/static/cmake/modules/FindNETCDF.cmake
r27565 r27567 115 115 NAMES ${_extralib} 116 116 HINTS 117 ${HDF5_ROOT}118 $ENV{HDF5_ROOT}119 117 ${ZLIB_ROOT} 120 118 $ENV{ZLIB_ROOT} -
issm/trunk-jpl/externalpackages/gmt/install-6-linux-static.sh
r27541 r27567 67 67 -DCURL_LIBRARY="${CURL_ROOT}/lib/libcurl.a" \ 68 68 -DGDAL_EXTRA_LIBS="${GDAL_EXTRA_LIBS}" \ 69 -DHDF5_ROOT="${HDF5_ROOT}" \70 69 -DLAPACK_LIBRARIES="${LAPACK_ROOT}/lib/libflapack.a;${LIBGFORTRAN_ROOT}/libgfortran.a;${LIBGFORTRAN_ROOT}/libquadmath.a;${LIBGCC}" \ 71 70 -DNETCDF_EXTRA_LIBS="${NETCDF_EXTRA_LIBS}" \ -
issm/trunk-jpl/externalpackages/gmt/install-6-mac-static.sh
r27565 r27567 67 67 -DCURL_LIBRARY="${CURL_ROOT}/lib/libcurl.a" \ 68 68 -DGDAL_EXTRA_LIBS="${GDAL_EXTRA_LIBS}" \ 69 -DHDF5_ROOT="${HDF5_ROOT}" \70 69 -DLAPACK_LIBRARIES="${LAPACK_ROOT}/lib/libflapack.a;${LIBGFORTRAN_ROOT}/libgfortran.a;${LIBGFORTRAN_ROOT}/libquadmath.a;${LIBGCC}" \ 71 70 -DNETCDF_EXTRA_LIBS="${NETCDF_EXTRA_LIBS}" \ -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-static-with_tests.sh
r25860 r27567 32 32 export CPPFLAGS="-I${ZLIB_ROOT}/include" 33 33 34 export HDF5LIB="${HDF5_ROOT}/lib/libhdf5_hl.a ${HDF5_ROOT}/lib/libhdf5.a"35 34 export ZLIB="${ZLIB_ROOT}/lib/libz.a" 36 35 -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-static.sh
r25860 r27567 32 32 export CPPFLAGS="-I${ZLIB_ROOT}/include" 33 33 34 export HDF5LIB="${HDF5_ROOT}/lib/libhdf5_hl.a ${HDF5_ROOT}/lib/libhdf5.a"35 34 export ZLIB="${ZLIB_ROOT}/lib/libz.a" 36 35 -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-with_tests.sh
r25860 r27567 22 22 # 23 23 export CC=mpicc 24 export CPPFLAGS="-I${CURL_ROOT}/include -I${ HDF5_ROOT}/include -I${ZLIB_ROOT}/include"25 export LDFLAGS="-L${CURL_ROOT}/lib -L${ HDF5_ROOT}/lib -L${ZLIB_ROOT}/lib"24 export CPPFLAGS="-I${CURL_ROOT}/include -I${ZLIB_ROOT}/include" 25 export LDFLAGS="-L${CURL_ROOT}/lib -L${ZLIB_ROOT}/lib" 26 26 27 27 # Download source -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel.sh
r25860 r27567 22 22 # 23 23 export CC=mpicc 24 export CPPFLAGS="-I${CURL_ROOT}/include -I${ HDF5_ROOT}/include -I${ZLIB_ROOT}/include"25 export LDFLAGS="-L${CURL_ROOT}/lib -L${ HDF5_ROOT}/lib -L${ZLIB_ROOT}/lib"24 export CPPFLAGS="-I${CURL_ROOT}/include -I${ZLIB_ROOT}/include" 25 export LDFLAGS="-L${CURL_ROOT}/lib -L${ZLIB_ROOT}/lib" 26 26 27 27 # Download source -
issm/trunk-jpl/externalpackages/netcdf/install-4.7-with_tests.sh
r25860 r27567 21 21 # Environment 22 22 # 23 export CPPFLAGS="-I${CURL_ROOT}/include -I${ HDF5_ROOT}/include -I${ZLIB_ROOT}/include"24 export LDFLAGS="-L${CURL_ROOT}/lib -L${ HDF5_ROOT}/lib -L${ZLIB_ROOT}/lib"23 export CPPFLAGS="-I${CURL_ROOT}/include -I${ZLIB_ROOT}/include" 24 export LDFLAGS="-L${CURL_ROOT}/lib -L${ZLIB_ROOT}/lib" 25 25 26 26 # Download source -
issm/trunk-jpl/externalpackages/netcdf/install-4.7.sh
r25860 r27567 21 21 # Environment 22 22 # 23 export CPPFLAGS="-I${CURL_ROOT}/include -I${ HDF5_ROOT}/include -I${ZLIB_ROOT}/include"24 export LDFLAGS="-L${CURL_ROOT}/lib -L${ HDF5_ROOT}/lib -L${ZLIB_ROOT}/lib"23 export CPPFLAGS="-I${CURL_ROOT}/include -I${ZLIB_ROOT}/include" 24 export LDFLAGS="-L${CURL_ROOT}/lib -L${ZLIB_ROOT}/lib" 25 25 26 26 # Download source -
issm/trunk-jpl/jenkins/linux64_caladan
r27456 r27567 39 39 #-----------------------------------# 40 40 41 #List of external pa kages to be installed and their installation scripts41 #List of external packages to be installed and their installation scripts 42 42 EXTERNALPACKAGES="autotools install.sh 43 43 cmake install.sh -
issm/trunk-jpl/jenkins/linux64_caladan_ad
r26102 r27567 29 29 #-----------------------------------# 30 30 31 #List of external pa kages to be installed and their installation scripts31 #List of external packages to be installed and their installation scripts 32 32 EXTERNALPACKAGES=" 33 33 autotools install-linux.sh -
issm/trunk-jpl/jenkins/linux64_caladan_ampi
r26102 r27567 39 39 #-----------------------------------# 40 40 41 #List of external pa kages to be installed and their installation scripts41 #List of external packages to be installed and their installation scripts 42 42 EXTERNALPACKAGES=" 43 43 autotools install-linux.sh -
issm/trunk-jpl/jenkins/mac-intel-basic
r27552 r27567 31 31 #-------------------# 32 32 33 # List of external pa kages to be installed and their installation scripts33 # List of external packages to be installed and their installation scripts 34 34 EXTERNALPACKAGES=" 35 35 autotools install-mac.sh -
issm/trunk-jpl/jenkins/mac-intel-dakota
r27564 r27567 43 43 #-------------------# 44 44 45 #List of external pa kages to be installed and their installation scripts45 #List of external packages to be installed and their installation scripts 46 46 EXTERNALPACKAGES=" 47 47 autotools install-mac.sh -
issm/trunk-jpl/jenkins/mac-intel-solid_earth
r27564 r27567 43 43 #-------------------# 44 44 45 #List of external pa kages to be installed and their installation scripts45 #List of external packages to be installed and their installation scripts 46 46 EXTERNALPACKAGES=" 47 47 autotools install-mac.sh -
issm/trunk-jpl/jenkins/mac-silicon-basic
r27542 r27567 40 40 #-------------------# 41 41 42 # List of external pa kages to be installed and their installation scripts42 # List of external packages to be installed and their installation scripts 43 43 EXTERNALPACKAGES=" 44 44 autotools install-mac.sh -
issm/trunk-jpl/jenkins/pine_island-mac-basic
r27456 r27567 31 31 #-------------------# 32 32 33 # List of external pa kages to be installed and their installation scripts33 # List of external packages to be installed and their installation scripts 34 34 EXTERNALPACKAGES=" 35 35 autotools install-mac.sh -
issm/trunk-jpl/jenkins/pine_island-mac-dakota
r27456 r27567 42 42 #-------------------# 43 43 44 #List of external pa kages to be installed and their installation scripts44 #List of external packages to be installed and their installation scripts 45 45 EXTERNALPACKAGES=" 46 46 autotools install-mac.sh -
issm/trunk-jpl/jenkins/pine_island-mac-solid_earth
r27456 r27567 42 42 #-------------------# 43 43 44 #List of external pa kages to be installed and their installation scripts44 #List of external packages to be installed and their installation scripts 45 45 EXTERNALPACKAGES=" 46 46 autotools install-mac.sh -
issm/trunk-jpl/jenkins/pine_island-mac-solid_earth-lambert
r27456 r27567 42 42 #-------------------# 43 43 44 #List of external pa kages to be installed and their installation scripts44 #List of external packages to be installed and their installation scripts 45 45 EXTERNALPACKAGES=" 46 46 autotools install-mac.sh -
issm/trunk-jpl/jenkins/ross-win-msys2-gcc-msmpi-basic
r27554 r27567 23 23 #-------------------# 24 24 25 #List of external pa kages to be installed and their installation scripts25 #List of external packages to be installed and their installation scripts 26 26 EXTERNALPACKAGES=" 27 27 metis install-5-win-msys2-gcc.sh -
issm/trunk-jpl/jenkins/ross-win-msys2-mingw-msmpi-basic
r26765 r27567 28 28 #-------------------# 29 29 30 #List of external pa kages to be installed and their installation scripts30 #List of external packages to be installed and their installation scripts 31 31 EXTERNALPACKAGES=" 32 32 msmpi install.sh -
issm/trunk-jpl/jenkins/windows
r26102 r27567 37 37 #-----------------------------------# 38 38 39 #List of external pa kages to be installed and their installation scripts39 #List of external packages to be installed and their installation scripts 40 40 EXTERNALPACKAGES=" 41 41 autotools install-win.sh -
issm/trunk-jpl/jenkins/windows-par
r26102 r27567 35 35 #-----------------------------------# 36 36 37 #List of external pa kages to be installed and their installation scripts37 #List of external packages to be installed and their installation scripts 38 38 EXTERNALPACKAGES="autotools install-win.sh 39 39 petsc install-dev-win10-par.sh -
issm/trunk-jpl/jenkins/windows_static
r26102 r27567 37 37 #-----------------------------------# 38 38 39 #List of external pa kages to be installed and their installation scripts39 #List of external packages to be installed and their installation scripts 40 40 EXTERNALPACKAGES="autotools install-win.sh 41 41 petsc install-3.6-win10.sh
Note:
See TracChangeset
for help on using the changeset viewer.