Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "fix MC on 32bits about libunwind"
authordegomme <augustin.degomme@unibas.ch>
Wed, 2 Nov 2016 13:39:34 +0000 (14:39 +0100)
committerdegomme <augustin.degomme@unibas.ch>
Wed, 2 Nov 2016 13:39:34 +0000 (14:39 +0100)
This reverts commit b1369e636e06e5ea1547c38b554fcb17ad7ca81a.

tools/cmake/Modules/FindLibunwind.cmake

index 1a2dd83..d940934 100644 (file)
@@ -36,9 +36,9 @@ if(NOT PATH_LIBUNWIND_LIB)
   # Mac OSX has a libunwind that is not the one we need, so double check
   if (PATH_LIBUNWIND_LIB)
     message(STATUS "Looking for libunwind - found")
-    CHECK_LIBRARY_EXISTS(unwind unw_init_local "${PATH_LIBUNWIND_LIB}" RIGHT_LIBUNWIND)
+    CHECK_LIBRARY_EXISTS(unwind unw_init_local PATH_LIBUNWIND_LIB RIGHT_LIBUNWIND)
     if (NOT RIGHT_LIBUNWIND)
-      message(STATUS "libunwind in ${PATH_LIBUNWIND_LIB} is unusable. Disable it.")
+      message(STATUS "This libunwind does not contain unw_init_local(). It's unusable.")
       set(PATH_LIBUNWIND_LIB 0)
     endif()