Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make it work on x86 too. Other arches are still broken for MC and this is wrong
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 24 Oct 2012 08:13:38 +0000 (10:13 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 24 Oct 2012 08:13:53 +0000 (10:13 +0200)
buildtools/Cmake/MakeLib.cmake

index 8e71f41..d37b8bf 100644 (file)
@@ -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)