Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit e4498781 authored by gsell's avatar gsell
Browse files

Merge branch...

Merge branch '806-linking-fails-on-linux-due-to-unresolved-symbols-provided-by-libpthread' into 'master'

Resolve "linking fails on Linux due to unresolved symbols provided by libpthread"

Closes #806

See merge request !663
parents da117033 c471fc70
No related branches found
No related tags found
1 merge request!663Resolve "linking fails on Linux due to unresolved symbols provided by libpthread"
......@@ -117,9 +117,10 @@ elseif (${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
# See issue 587 and corresponding merge request 415.
# Clang does not support this flag!
add_compile_options (-fno-aggressive-loop-optimizations)
add_compile_options (-Wno-error=cpp)
if (${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS "4.7.3")
message (FATAL_ERROR "To build OPAL you need GCC version 4.7.3 or greater")
if (${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS "9.5.0")
message (FATAL_ERROR "To build OPAL you need GCC version 9.5.0 or greater")
endif ()
# Warning flags
......@@ -307,9 +308,6 @@ endif ()
set (OPAL_CXX_FLAGS ${OPAL_CXX_FLAGS}
CACHE INTERNAL "" FORCE
)
set (OPAL_LIBS ${OPAL_LIBS}
CACHE INTERNAL "" FORCE
)
# configure file
configure_file (
......@@ -321,4 +319,4 @@ install (
FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config_install.cmake
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/${PROJECT_NAME}"
RENAME ${PROJECT_NAME}Config.cmake
)
\ No newline at end of file
)
......@@ -121,15 +121,34 @@ set_property(TARGET libOPALObj PROPERTY POSITION_INDEPENDENT_CODE 1)
add_executable (opal Main.cpp)
set (OPAL_LIBS
${SAAMG_SOLVER_LIBS}
${AMR_MG_SOLVER_LIBS}
${AMR_LIBS}
${MPI_CXX_LIBRARIES}
${OPTP_LIBS}
${OPTP_LIBRARY}
${IPPL_LIBRARY}
${GSL_LIBRARY}
${GSL_CBLAS_LIBRARY}
${H5Hut_LIBRARY}
${HDF5_LIBRARIES}
${Boost_LIBRARIES}
m
z
CACHE STRING "" FORCE
)
if (WILL_BUILD_STATIC_LIBRARY)
add_library (libOPALstatic STATIC $<TARGET_OBJECTS:libOPALObj>)
set_target_properties (libOPALstatic PROPERTIES OUTPUT_NAME OPAL)
target_link_libraries (libOPALstatic
${SAAMG_SOLVER_LIBS}
${AMR_MG_SOLVER_LIBS}
${AMR_LIBS}
${MPI_CXX_LIBRARIES}
)
target_link_libraries (
opal
libOPALstatic
${OPAL_LIBS}
${CMAKE_DL_LIBS}
pthread
)
install (TARGETS libOPALstatic DESTINATION "${CMAKE_INSTALL_PREFIX}/lib")
endif()
......@@ -137,44 +156,18 @@ if (WILL_BUILD_SHARED_LIBRARY)
add_library(libOPALdynamic SHARED $<TARGET_OBJECTS:libOPALObj>)
set_target_properties (libOPALdynamic PROPERTIES OUTPUT_NAME OPAL)
target_compile_options(libOPALdynamic PRIVATE -fPIC)
target_link_libraries( libOPALdynamic
${SAAMG_SOLVER_LIBS}
${AMR_MG_SOLVER_LIBS}
${AMR_LIBS}
${MPI_CXX_LIBRARIES}
${OPTP_LIBS}
${OPTP_LIBRARY}
${IPPL_LIBRARY}
${GSL_LIBRARY}
${GSL_CBLAS_LIBRARY}
${H5Hut_LIBRARY}
${HDF5_LIBRARIES}
${Boost_LIBRARIES}
m
z
target_link_libraries (
libOPALdynamic
${OPAL_LIBS}
"-rdynamic"
)
install (TARGETS libOPALdynamic DESTINATION "${CMAKE_INSTALL_PREFIX}/lib")
)
install (TARGETS libOPALdynamic DESTINATION "${CMAKE_INSTALL_PREFIX}/lib")
endif()
if (BUILD_OPAL_PYTHON)
add_subdirectory (PyOpal)
endif ()
target_link_libraries( opal
libOPALstatic
${OPTP_LIBS}
${OPTP_LIBRARY}
${IPPL_LIBRARY}
${GSL_LIBRARY}
${GSL_CBLAS_LIBRARY}
${H5Hut_LIBRARY}
${HDF5_LIBRARIES}
${Boost_LIBRARIES}
m
z
${CMAKE_DL_LIBS}
)
if (ENABLE_OPAL_FEL)
include_directories (${MITHRA_INCLUDE_DIR})
......
......@@ -65,16 +65,7 @@ add_executable (${TEST_EXE} ${TEST_SRCS})
target_link_libraries (
${TEST_EXE}
libOPALstatic
${OPTP_LIBS}
${OPTP_LIBRARY}
${IPPL_LIBRARY}
${GSL_LIBRARY}
${GSL_CBLAS_LIBRARY}
${H5Hut_LIBRARY}
${HDF5_LIBRARIES}
${Boost_LIBRARIES}
${Trilinos_LIBRARIES} ${Trilinos_TPL_LIBRARIES}
${AMREX_LIBRARIES}
${OPAL_LIBS}
${OTHER_CMAKE_EXE_LINKER_FLAGS}
${GTEST_BOTH_LIBRARIES}
pthread
......
......@@ -20,17 +20,8 @@ link_directories (
set (MSLANG_LIBS
libOPALstatic
${OPTP_LIBS}
${OPTP_LIBRARY}
${IPPL_LIBRARY}
${GSL_LIBRARY}
${GSL_CBLAS_LIBRARY}
${H5Hut_LIBRARY}
${HDF5_LIBRARY}
${Boost_LIBRARIES}
${OPAL_LIBS}
boost_timer
m
z
)
message (STATUS "Compiling MSLang")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment