From: Martin Quinson Date: Wed, 24 Oct 2012 08:13:38 +0000 (+0200) Subject: make it work on x86 too. Other arches are still broken for MC and this is wrong X-Git-Tag: v3_8~18^2~1 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1601d48185d2455b18eec9230869d3d6dbc486c5 make it work on x86 too. Other arches are still broken for MC and this is wrong --- diff --git a/buildtools/Cmake/MakeLib.cmake b/buildtools/Cmake/MakeLib.cmake index 8e71f41d64..d37b8bf4eb 100644 --- a/buildtools/Cmake/MakeLib.cmake +++ b/buildtools/Cmake/MakeLib.cmake @@ -117,10 +117,13 @@ 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)