Changeset 27565
- Timestamp:
- 02/10/23 13:57:01 (2 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/examples/EsaGRACE/runme.m
r26289 r27565 125 125 set(0,'DefaultAxesFontSize',18,'DefaultAxesLineWidth',1,'DefaultTextFontSize',18,'DefaultLineMarkerSize',8) 126 126 figure1=figure('Position', [100, 100, 1000, 500]); 127 gcf; load coast ; cla;127 gcf; load coastlines; cla; 128 128 pcolor(lon_grid,lat_grid,sol_grid); shading flat; hold on; 129 129 if (kk==1) 130 geoshow(flipud( lat),flipud(long),'DisplayType','polygon','FaceColor','white');130 geoshow(flipud(coastlat),flipud(coastlon),'DisplayType','polygon','FaceColor','white'); 131 131 end 132 plot( long,lat,'k'); hold off;132 plot(coastlon,coastlat,'k'); hold off; 133 133 c1=colorbar; 134 134 colormap('haxby'); -
issm/trunk-jpl/externalpackages/dakota/install-6.2-mac-static.sh
r27563 r27565 28 28 export DAK_SRC=${ISSM_DIR}/externalpackages/dakota/src # DO NOT CHANGE THIS 29 29 export LAPACK_LIBS="-L${LAPACK_ROOT}/lib -lflapack ${LIBGFORTRAN_ROOT}/libgfortran.a ${LIBGFORTRAN_ROOT}/libquadmath.a ${LIBGCC}" # Need to export LAPACK_LIBS *and* pass it as an option to CMake to ensure that external packages also find it 30 export LDFLAGS="-framework CoreFoundation" 30 31 31 32 # Cleanup -
issm/trunk-jpl/externalpackages/dakota/install-6.2-mac.sh
r27563 r27565 25 25 export DAK_SRC=${ISSM_DIR}/externalpackages/dakota/src # DO NOT CHANGE THIS 26 26 export LAPACK_LIBS="-L${LAPACK_ROOT}/lib -lflapack -L${LIBGFORTRAN_ROOT} -lgfortran" # Need to export LAPACK_LIBS *and* pass it as an option to CMake to ensure that external packages also find it 27 export LDFLAGS="-framework CoreFoundation" 27 28 28 29 # Cleanup -
issm/trunk-jpl/externalpackages/gdal/install-3-python-static.sh
r27541 r27565 17 17 export CXX=mpicxx 18 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="-l hdf5_hl -lhdf5" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time19 export LIBS="-lsqlite3 -lhdf5_hl -lhdf5" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time 20 20 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 21 -
issm/trunk-jpl/externalpackages/gdal/install-3-static.sh
r27562 r27565 17 17 export CXX=mpicxx 18 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="-l hdf5_hl -lhdf5" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time19 export LIBS="-lsqlite3 -lhdf5_hl -lhdf5" # Need to do this so HDF5 symbols referenced in NETCDF library are found at link time 20 20 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 21 -
issm/trunk-jpl/externalpackages/gmt/configs/6/static/cmake/modules/FindGDAL.cmake
r27151 r27565 166 166 # find all manually-supplied libs 167 167 if (GDAL_EXTRA_LIBS) 168 # Ensure -l is precede ced by whitespace to not match168 # Ensure -l is preceded by whitespace to not match 169 169 # '-l' in '-L/usr/lib/x86_64-linux-gnu/hdf5/serial' 170 170 string (REGEX MATCHALL "(^| )-l[^ ]+" _gdal_extra_lib_dashl ${GDAL_EXTRA_LIBS}) -
issm/trunk-jpl/externalpackages/gmt/configs/6/static/cmake/modules/FindNETCDF.cmake
r27151 r27565 59 59 OUTPUT_VARIABLE NETCDF_CONFIG_LIBS) 60 60 if (NETCDF_CONFIG_LIBS) 61 # Ensure -l is precede ced by whitespace to not match61 # Ensure -l is preceded by whitespace to not match 62 62 # '-l' in '-L/usr/lib/x86_64-linux-gnu/hdf5/serial' 63 63 string (REGEX MATCHALL "(^| )-l[^ ]+" _netcdf_dashl ${NETCDF_CONFIG_LIBS}) -
issm/trunk-jpl/externalpackages/gmt/install-6-mac-static.sh
r27541 r27565 20 20 21 21 GDAL_EXTRA_LIBS="-lc++" # `$GDAL_ROOT/bin/gdal-config --dep-libs` does not report need to link to libc++ (see also customized configuration file ./configs/6/static/cmake/modules/FindGDAL.cmake) 22 NETCDF_EXTRA_LIBS="-l sqlite3 -lpthread -ldl -liconv" # `$NETCDF_ROOT/bin/nc-config --libs` does not report certain dependencies of certain static libraries (see also customized configuration file ./configs/6/static/cmake/modules/FindNETCDF.cmake)22 NETCDF_EXTRA_LIBS="-lpthread -ldl -liconv" # `$NETCDF_ROOT/bin/nc-config --libs` does not report certain dependencies of certain static libraries (see also customized configuration file ./configs/6/static/cmake/modules/FindNETCDF.cmake) 23 23 24 24 # Environment … … 27 27 export CURL_INCLUDE_DIRS="${CURL_ROOT}/include" 28 28 export CURL_LIBRARIES="${CURL_ROOT}/lib/libcurl.a;${ZLIB_ROOT}/lib/libz.a" 29 export LDFLAGS="- framework CoreFoundation -framework Security"29 export LDFLAGS="-lsqlite3 -framework CoreFoundation -framework Security" 30 30 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 31
Note:
See TracChangeset
for help on using the changeset viewer.