Changeset 24654


Ignore:
Timestamp:
03/11/20 20:39:49 (5 years ago)
Author:
jdquinn
Message:

CHG: Support for shared libraries in Boost and Dakota.

Location:
issm/trunk-jpl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/etc/environment.sh

    r24653 r24654  
    224224DAKOTA_DIR="${ISSM_DIR}/externalpackages/dakota/install"
    225225if [ -d "${DAKOTA_DIR}" ]; then
    226         path_prepend "${DAKOTA_DIR}/bin"
    227         ld_library_path_prepend "${DAKOTA_DIR}/lib"
     226        path_append "${DAKOTA_DIR}/bin"
     227        ld_library_path_append "${DAKOTA_DIR}/lib"
    228228        dyld_library_path_prepend "${DAKOTA_DIR}/lib"
    229229fi
  • issm/trunk-jpl/externalpackages/dakota/install-6.2-mac.sh

    r24653 r24654  
    1010## Environment
    1111#
    12 export BLAS_LIBS="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lfblas -L/usr/local/gfortran/lib -lgfortran" # Need to export BLAS_LIBS *and* pass it as an option to CMake to ensure that external packages also find it
     12export BLAS_LIBS="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lfblas -L/usr/local/Cellar/gcc/9.2.0_1/lib/gcc/9 -lgfortran" # Need to export BLAS_LIBS *and* pass it as an option to CMake to ensure that external packages also find it
    1313export BOOST_ROOT=${ISSM_DIR}/externalpackages/boost/install
    1414export CXXFLAGS='-std=c++98' # Setting CXXFLAGS to deal with C++11 incompatibility with Matlab's Boost (absolutely necessary for this version)
     
    1616export DAK_INSTALL=${DAK_ROOT}/install
    1717export DAK_SRC=${DAK_ROOT}/src
    18 export LAPACK_LIBS="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lflapack -L/usr/local/gfortran/lib -lgfortran" # Need to export LAPACK_LIBS *and* pass it as an option to CMake to ensure that external packages also find it
     18export LAPACK_LIBS="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lflapack -L//usr/local/Cellar/gcc/9.2.0_1/lib/gcc/9 -lgfortran" # Need to export LAPACK_LIBS *and* pass it as an option to CMake to ensure that external packages also find it
    1919
    2020# Cleanup
     
    7575sed -i -e "s/#define HAVE_MPI/\/* #define HAVE_MPI *\//g" include/Teuchos_config.h
    7676
     77# Set install_name for all shared libraries
     78cd ${DAK_INSTALL}/lib
     79for name in *.dylib; do
     80        install_name_tool -id ${DAK_INSTALL}/lib/${name} ${name}
     81done
     82
    7783## Patch install names for certain libraries
    7884#
    7985# TODO: Figure out how to reconfigure source to apply these install names at compile time
    8086#
    81 install_name_tool -change libdakota_src_fortran.dylib ${DAK_INSTALL}/lib/libdakota_src_fortran.dylib lib/libdakota_src.dylib
    82 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib lib/liblhs.dylib
    83 install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib lib/liblhs.dylib
    84 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib lib/liblhs_mods.dylib
    85 install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib lib/liboptpp.dylib
    86 install_name_tool -change libdfftpack.dylib ${DAK_INSTALL}/lib/libdfftpack.dylib lib/libpecos.dylib
    87 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib lib/libpecos.dylib
    88 install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib lib/libpecos.dylib
    89 install_name_tool -change libpecos_src.dylib ${DAK_INSTALL}/lib/libpecos_src.dylib lib/libpecos.dylib
    90 install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib lib/libpecos.dylib
    91 install_name_tool -change libdfftpack.dylib ${DAK_INSTALL}/lib/libdfftpack.dylib lib/libpecos_src.dylib
    92 install_name_tool -change liblhs.dylib ${DAK_INSTALL}/lib/liblhs.dylib lib/libpecos_src.dylib
    93 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib lib/libpecos_src.dylib
    94 install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib lib/libpecos_src.dylib
    95 install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib lib/libpecos_src.dylib
    96 install_name_tool -change li
     87install_name_tool -change libdakota_src_fortran.dylib ${DAK_INSTALL}/lib/libdakota_src_fortran.dylib libdakota_src.dylib
     88install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib liblhs.dylib
     89install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib liblhs.dylib
     90install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib liblhs_mods.dylib
     91install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib liboptpp.dylib
     92install_name_tool -change libdfftpack.dylib ${DAK_INSTALL}/lib/libdfftpack.dylib libpecos.dylib
     93install_name_tool -change liblhs.dylib ${DAK_INSTALL}/lib/liblhs.dylib libpecos.dylib
     94install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib libpecos.dylib
     95install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib libpecos.dylib
     96install_name_tool -change libpecos_src.dylib ${DAK_INSTALL}/lib/libpecos_src.dylib libpecos.dylib
     97install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib libpecos.dylib
     98install_name_tool -change libdfftpack.dylib ${DAK_INSTALL}/lib/libdfftpack.dylib libpecos_src.dylib
     99install_name_tool -change liblhs.dylib ${DAK_INSTALL}/lib/liblhs.dylib libpecos_src.dylib
     100install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib libpecos_src.dylib
     101install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib libpecos_src.dylib
     102install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib libpecos_src.dylib
     103install_name_tool -change libsurfpack_fortran.dylib ${DAK_INSTALL}/lib/libsurfpack_fortran.dylib libsurfpack.dylib
  • issm/trunk-jpl/src/wrappers/matlab/Makefile.am

    r24593 r24654  
    8888endif
    8989
     90# NOTE:
     91# - On Linux, We probably do not need the -static flag as long as we only
     92#       generate static libraries for external packages. Dynamic system libraries
     93#       will be linked to, whether we like it or not, if no static version is
     94#       available.
     95# - On macOC, static linking of binaries is not supported.
     96#
    9097if STANDALONE_MODULES
     98if MAC
     99AM_LDFLAGS += -Wl,-rpath,'$$ORIGIN'
     100else
    91101AM_LDFLAGS += -Wl,-static -Wl,--disable-new-dtags -Wl,-rpath,'$$ORIGIN'
     102endif
    92103endif
    93104
  • issm/trunk-jpl/src/wrappers/python/Makefile.am

    r24593 r24654  
    6464endif
    6565
     66# NOTE:
     67# - On Linux, We probably do not need the -static flag as long as we only
     68#       generate static libraries for external packages. Dynamic system libraries
     69#       will be linked to, whether we like it or not, if no static version is
     70#       available.
     71# - On macOC, static linking of binaries is not supported.
     72#
    6673if STANDALONE_MODULES
     74if MAC
     75AM_LDFLAGS += -Wl,-rpath,'$$ORIGIN'
     76else
    6777AM_LDFLAGS += -Wl,-static -Wl,--disable-new-dtags -Wl,-rpath,'$$ORIGIN'
     78endif
    6879endif
    6980
Note: See TracChangeset for help on using the changeset viewer.