X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/347996b4a10c4e8579080692afa60e0afb88b60a..63c371bbca5afccc4708761d83af6fc2443ca553:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index 995dd7f177..0d157fe851 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -1,5 +1,15 @@ ### Make Libs +# On Mac OSX, specify that rpath is useful to look for the dependencies +# See https://cmake.org/Wiki/CMake_RPATH_handling and Java.cmake +set(MACOSX_RPATH ON) +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 "@loader_path/.") + SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) +endif() + ############################### # Declare the library content # ############################### @@ -8,10 +18,6 @@ add_library(simgrid SHARED ${simgrid_sources}) set_target_properties(simgrid PROPERTIES VERSION ${libsimgrid_version}) -if(enable_ust) - ADD_DEPENDENCIES(simgrid simgrid_ust) -endif() - add_dependencies(simgrid maintainer_files) if(enable_model-checking) @@ -24,7 +30,6 @@ endif() # Compute the dependencies of SimGrid ##################################### -set(SIMGRID_DEP "-lm") if (HAVE_BOOST_CONTEXTS) set(SIMGRID_DEP "${SIMGRID_DEP} ${Boost_CONTEXT_LIBRARY}") endif() @@ -57,7 +62,11 @@ if(HAVE_LUA) COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/simdag/ COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} #for test ) - SET(SIMGRID_DEP "${SIMGRID_DEP} ${LUA_LIBRARY} -ldl") + SET(SIMGRID_DEP "${SIMGRID_DEP} ${LUA_LIBRARY} ${DL_LIBRARY}") +endif() + +if(HAVE_PAPI) + SET(SIMGRID_DEP "${SIMGRID_DEP} -lpapi") endif() if(HAVE_GRAPHVIZ) @@ -70,48 +79,20 @@ if(HAVE_GRAPHVIZ) endif() endif() -if(SIMGRID_HAVE_LIBSIG) - SET(SIMGRID_DEP "${SIMGRID_DEP} -lsigc-2.0") - add_definitions(-DLIBSIGC) -endif() - -if(HAVE_MC) - # The availability of libunwind was checked in CompleteInFiles.cmake - # (that includes FindLibunwind.cmake), so simply load it now. - - SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind -lunwind-ptrace") - - # Same for libdw - SET(SIMGRID_DEP "${SIMGRID_DEP} -ldw") - # This supposes that the host machine is either an AMD or a X86. - # This is deeply wrong, and should be fixed by manually loading -lunwind-PLAT (FIXME) - if(PROCESSOR_x86_64) - SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86_64") - else() - SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86") - endif() -endif() - -if(MMALLOC_WANT_OVERRIDE_LEGACY AND HAVE_GNU_LD) +if(HAVE_MC AND HAVE_GNU_LD) SET(SIMGRID_DEP "${SIMGRID_DEP} ${DL_LIBRARY}") endif() if(HAVE_NS3) - SET(SIMGRID_DEP "${SIMGRID_DEP} -lns${NS3_VERSION}-core -lns${NS3_VERSION}-csma -lns${NS3_VERSION}-point-to-point -lns${NS3_VERSION}-internet -lns${NS3_VERSION}-applications") + SET(SIMGRID_DEP "${SIMGRID_DEP} -lns${NS3_VERSION}-core${NS3_SUFFIX} -lns${NS3_VERSION}-csma${NS3_SUFFIX} -lns${NS3_VERSION}-point-to-point${NS3_SUFFIX} -lns${NS3_VERSION}-internet${NS3_SUFFIX} -lns${NS3_VERSION}-applications${NS3_SUFFIX}") endif() if(HAVE_POSIX_GETTIME) SET(SIMGRID_DEP "${SIMGRID_DEP} -lrt") endif() -if(HAVE_BACKTRACE_IN_LIBEXECINFO) - SET(SIMGRID_DEP "${SIMGRID_DEP} -lexecinfo") -endif(HAVE_BACKTRACE_IN_LIBEXECINFO) - -# Dependencies from USR -################################### -if(enable_ust) - set(SIMGRID_DEP "${SIMGRID_DEP} -llttng-ust") +if("${CMAKE_SYSTEM}" MATCHES "FreeBSD") + set(SIMGRID_DEP "${SIMGRID_DEP} -lprocstat") endif() # Compute the dependencies of SMPI @@ -124,6 +105,9 @@ target_link_libraries(simgrid ${SIMGRID_DEP}) # Dependencies from maintainer mode ################################### +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()