X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4e60b23928dbe1e46e52ff2a1a6cd7bedf74f7f3..43b4619af6da04808d1fd4be0dbfe6e279148b3a:/buildtools/Cmake/MakeLib.cmake diff --git a/buildtools/Cmake/MakeLib.cmake b/buildtools/Cmake/MakeLib.cmake index 96b330efa9..d37b8bf4eb 100644 --- a/buildtools/Cmake/MakeLib.cmake +++ b/buildtools/Cmake/MakeLib.cmake @@ -115,10 +115,15 @@ if(HAVE_GTNETS) endif(HAVE_GTNETS) if(HAVE_MC) + # The availability of libunwind was checked in CompleteInFiles.cmake + # (that includes FindLibunwind.cmake), so simply load it now. + + # 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(PROCESSOR_x86_64) - SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind") + else(PROCESSOR_x86_64) + SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86") endif(PROCESSOR_x86_64) endif(HAVE_MC)