X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/73662a7c0b0d1e462f2b99322183295be3a24a5a..39d3a0153b242aa016bdc528c9268a958bcd98d2:/buildtools/Cmake/MakeLib.cmake diff --git a/buildtools/Cmake/MakeLib.cmake b/buildtools/Cmake/MakeLib.cmake index bbf9eab654..9f15a915bd 100644 --- a/buildtools/Cmake/MakeLib.cmake +++ b/buildtools/Cmake/MakeLib.cmake @@ -12,6 +12,10 @@ if(enable_lib_static) add_library(simgrid_static STATIC ${simgrid_sources}) endif() +if(enable_ust) + ADD_DEPENDENCIES(simgrid simgrid_ust) +endif() + if(enable_java) include(${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/MakeJava.cmake) endif() @@ -81,11 +85,18 @@ if(HAVE_GTNETS) SET(SIMGRID_DEP "${SIMGRID_DEP} -lgtnets") endif() +if(enable_mc_content_adressable_pages) + SET(SIMGRID_DEP "${SIMGRID_DEP} -lnettle") +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") + + # 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) @@ -117,6 +128,12 @@ 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") +endif() + # Compute the dependencies of SMPI ################################## if(enable_smpi AND APPLE)