Changeset 24654
- Timestamp:
- 03/11/20 20:39:49 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/etc/environment.sh
r24653 r24654 224 224 DAKOTA_DIR="${ISSM_DIR}/externalpackages/dakota/install" 225 225 if [ -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" 228 228 dyld_library_path_prepend "${DAKOTA_DIR}/lib" 229 229 fi -
issm/trunk-jpl/externalpackages/dakota/install-6.2-mac.sh
r24653 r24654 10 10 ## Environment 11 11 # 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 it12 export 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 13 13 export BOOST_ROOT=${ISSM_DIR}/externalpackages/boost/install 14 14 export CXXFLAGS='-std=c++98' # Setting CXXFLAGS to deal with C++11 incompatibility with Matlab's Boost (absolutely necessary for this version) … … 16 16 export DAK_INSTALL=${DAK_ROOT}/install 17 17 export 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 it18 export 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 19 19 20 20 # Cleanup … … 75 75 sed -i -e "s/#define HAVE_MPI/\/* #define HAVE_MPI *\//g" include/Teuchos_config.h 76 76 77 # Set install_name for all shared libraries 78 cd ${DAK_INSTALL}/lib 79 for name in *.dylib; do 80 install_name_tool -id ${DAK_INSTALL}/lib/${name} ${name} 81 done 82 77 83 ## Patch install names for certain libraries 78 84 # 79 85 # TODO: Figure out how to reconfigure source to apply these install names at compile time 80 86 # 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 87 install_name_tool -change libdakota_src_fortran.dylib ${DAK_INSTALL}/lib/libdakota_src_fortran.dylib libdakota_src.dylib 88 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib liblhs.dylib 89 install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib liblhs.dylib 90 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib liblhs_mods.dylib 91 install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib liboptpp.dylib 92 install_name_tool -change libdfftpack.dylib ${DAK_INSTALL}/lib/libdfftpack.dylib libpecos.dylib 93 install_name_tool -change liblhs.dylib ${DAK_INSTALL}/lib/liblhs.dylib libpecos.dylib 94 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib libpecos.dylib 95 install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib libpecos.dylib 96 install_name_tool -change libpecos_src.dylib ${DAK_INSTALL}/lib/libpecos_src.dylib libpecos.dylib 97 install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib libpecos.dylib 98 install_name_tool -change libdfftpack.dylib ${DAK_INSTALL}/lib/libdfftpack.dylib libpecos_src.dylib 99 install_name_tool -change liblhs.dylib ${DAK_INSTALL}/lib/liblhs.dylib libpecos_src.dylib 100 install_name_tool -change liblhs_mod.dylib ${DAK_INSTALL}/lib/liblhs_mod.dylib libpecos_src.dylib 101 install_name_tool -change liblhs_mods.dylib ${DAK_INSTALL}/lib/liblhs_mods.dylib libpecos_src.dylib 102 install_name_tool -change libteuchos.dylib ${DAK_INSTALL}/lib/libteuchos.dylib libpecos_src.dylib 103 install_name_tool -change libsurfpack_fortran.dylib ${DAK_INSTALL}/lib/libsurfpack_fortran.dylib libsurfpack.dylib -
issm/trunk-jpl/src/wrappers/matlab/Makefile.am
r24593 r24654 88 88 endif 89 89 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 # 90 97 if STANDALONE_MODULES 98 if MAC 99 AM_LDFLAGS += -Wl,-rpath,'$$ORIGIN' 100 else 91 101 AM_LDFLAGS += -Wl,-static -Wl,--disable-new-dtags -Wl,-rpath,'$$ORIGIN' 102 endif 92 103 endif 93 104 -
issm/trunk-jpl/src/wrappers/python/Makefile.am
r24593 r24654 64 64 endif 65 65 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 # 66 73 if STANDALONE_MODULES 74 if MAC 75 AM_LDFLAGS += -Wl,-rpath,'$$ORIGIN' 76 else 67 77 AM_LDFLAGS += -Wl,-static -Wl,--disable-new-dtags -Wl,-rpath,'$$ORIGIN' 78 endif 68 79 endif 69 80
Note:
See TracChangeset
for help on using the changeset viewer.