Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Pull changes to push BitTorrent fix
[simgrid.git] / buildtools / Cmake / MakeLib.cmake
index 96b330e..d37b8bf 100644 (file)
@@ -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)