Changeset 28189
- Timestamp:
- 03/26/24 19:44:20 (12 months ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/gmt/install-6-linux-static.sh
r28184 r28189 67 67 cmake \ 68 68 -DCMAKE_INSTALL_PREFIX="${PREFIX}" \ 69 -DBLAS_LIBRARIES="${BLAS_ROOT}/lib/libfblas.a;$ {LIBGFORTRAN_ROOT}/libgfortran.a;${LIBGFORTRAN_ROOT}/libquadmath.a;${LIBGCC}" \69 -DBLAS_LIBRARIES="${BLAS_ROOT}/lib/libfblas.a;$-L${LIBGFORTRAN_ROOT};-lgfortran" \ 70 70 -DCURL_INCLUDE_DIR="${CURL_ROOT}/include" \ 71 71 -DCURL_LIBRARY="${CURL_ROOT}/lib/libcurl.a" \ -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh
r28175 r28189 33 33 LIBGFORTRAN="/usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0" # Important that this is the library itself 34 34 LIBGFORTRAN_DIST="${ISSM_DIR}/lib/libgfortran.so.5" # Important the file name matches the SONAME entry in the binaries and other shared libraries which link to it 35 LIBQUADMATH="/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0" # Important that this is the library itself 36 LIBQUADMATH_DIST="${ISSM_DIR}/lib/libquadmath.so.0" # Important the file name matches the SONAME entry in the binaries and other shared libraries which link to it 35 37 36 38 ## Environment … … 72 74 cat generic_static.m | sed -e "s/generic_static/generic/g" > generic.m 73 75 74 echo "Moving libgfortran to lib/"76 echo "Moving libgfortran and libquadmath to lib/" 75 77 cp ${LIBGFORTRAN} ${LIBGFORTRAN_DIST} 2> /dev/null 78 cp ${LIBQUADMATH} ${LIBQUADMATH_DIST} 2> /dev/null 76 79 77 80 echo "Moving MPICH binaries to bin/" -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh
r28175 r28189 33 33 LIBGFORTRAN="/usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0" # Important that this is the library itself 34 34 LIBGFORTRAN_DIST="${ISSM_DIR}/lib/libgfortran.so.5" # Important the file name matches the SONAME entry in the binaries and other shared libraries which link to it 35 LIBQUADMATH="/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0" # Important that this is the library itself 36 LIBQUADMATH_DIST="${ISSM_DIR}/lib/libquadmath.so.0" # Important the file name matches the SONAME entry in the binaries and other shared libraries which link to it 35 37 36 38 ## Environment … … 66 68 cat generic_static.py | sed -e "s/generic_static/generic/g" > generic.py 67 69 68 echo "Moving libgfortran to lib/"70 echo "Moving libgfortran and libquadmath to lib/" 69 71 cp ${LIBGFORTRAN} ${LIBGFORTRAN_DIST} 2> /dev/null 72 cp ${LIBQUADMATH} ${LIBQUADMATH_DIST} 2> /dev/null 70 73 71 74 echo "Moving MPICH binaries to bin/"
Note:
See TracChangeset
for help on using the changeset viewer.