X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2434cd24de2d531a46c3b7089f490ddce659c566..865fb6d28e7238d339064278d4a14f40dd335da9:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index 480b93436c..8729e1c412 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -10,7 +10,7 @@ if(APPLE) # add the current location of libsimgrid-java.dynlib as a location for libsimgrid.dynlib # (useful when unpacking the native libraries from the jarfile) - set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") + set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}") endif() ############################### @@ -34,8 +34,8 @@ if(enable_model-checking) set_property(TARGET simgrid-mc APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}") install(TARGETS simgrid-mc # install that binary without breaking the rpath on Mac - RUNTIME DESTINATION bin/) - add_dependencies(tests simgrid-mc) + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}/) + add_dependencies(tests-mc simgrid-mc) endif() @@ -60,14 +60,7 @@ if (HAVE_BOOST_ADDR2LINE_BACKTRACE) endif() if(CMAKE_USE_PTHREADS_INIT) - set(SIMGRID_DEP "${SIMGRID_DEP} ${CMAKE_THREAD_LIBS_INIT}") -endif() - -if(SIMGRID_HAVE_LUA) - ADD_CUSTOM_TARGET(link_simgrid_lua ALL - DEPENDS simgrid - ) - SET(SIMGRID_DEP "${SIMGRID_DEP} ${LUA_LIBRARY} ${DL_LIBRARY}") + target_link_libraries(simgrid ${CMAKE_THREAD_LIBS_INIT}) endif() if(HAVE_PAPI) @@ -84,7 +77,7 @@ if(HAVE_GRAPHVIZ) endif() endif() -if(SIMGRID_HAVE_MC AND NOT ${DL_LIBRARY} STREQUAL "") +if(NOT ${DL_LIBRARY} STREQUAL "") SET(SIMGRID_DEP "${SIMGRID_DEP} ${DL_LIBRARY}") endif() @@ -100,16 +93,12 @@ endif() ################################## if(enable_smpi) - if(NOT ${DL_LIBRARY} STREQUAL "") - set(SIMGRID_DEP "${SIMGRID_DEP} ${DL_LIBRARY}") # for privatization - endif() - add_executable(smpimain src/smpi/smpi_main.c) target_link_libraries(smpimain simgrid) set_target_properties(smpimain PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib/simgrid) install(TARGETS smpimain # install that binary without breaking the rpath on Mac - RUNTIME DESTINATION lib/simgrid) + RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/simgrid) add_dependencies(tests smpimain) add_executable(smpireplaymain src/smpi/smpi_replay_main.cpp) @@ -118,7 +107,7 @@ if(enable_smpi) set_target_properties(smpireplaymain PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib/simgrid) install(TARGETS smpireplaymain # install that binary without breaking the rpath on Mac - RUNTIME DESTINATION lib/simgrid) + RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/simgrid) add_dependencies(tests smpireplaymain) if(SMPI_FORTRAN) @@ -130,9 +119,12 @@ if(enable_smpi) SET(SIMGRID_DEP "${SIMGRID_DEP} -lflang") if("${CMAKE_SYSTEM}" MATCHES "FreeBSD") set(SIMGRID_DEP "${SIMGRID_DEP} -lexecinfo") - if ("${CMAKE_SYSTEM_VERSION}" MATCHES "12") + if ("${CMAKE_SYSTEM_VERSION}" STRGREATER_EQUAL "12") set(SIMGRID_DEP "${SIMGRID_DEP} -lpgmath") endif() + if ("${CMAKE_SYSTEM_VERSION}" MATCHES "12\.1") + set(SIMGRID_DEP "${SIMGRID_DEP} -lomp") + endif() endif() endif() endif() @@ -165,7 +157,7 @@ endif() mark_as_advanced(GCCLIBATOMIC_LIBRARY) if(enable_model-checking AND (NOT LINKER_VERSION VERSION_LESS "2.30")) - set(SIMGRID_DEP "${SIMGRID_DEP} -Wl,-znoseparate-code") + set(SIMGRID_DEP "${SIMGRID_DEP} -Wl,-znorelro -Wl,-znoseparate-code") endif() target_link_libraries(simgrid ${SIMGRID_DEP}) @@ -175,9 +167,6 @@ target_link_libraries(simgrid ${SIMGRID_DEP}) if(enable_maintainer_mode) add_dependencies(simgrid smpi_generated_headers_call_location_tracing) endif() -if(enable_maintainer_mode AND PYTHON_EXE) - add_dependencies(simgrid simcalls_generated_src) -endif() if(enable_maintainer_mode AND BISON_EXE AND LEX_EXE) add_dependencies(simgrid automaton_generated_src) endif()