Remove (apparently obsolete) checks in cms config (#7294)
authorGereon Kremer <nafur42@gmail.com>
Fri, 1 Oct 2021 20:59:07 +0000 (13:59 -0700)
committerGitHub <noreply@github.com>
Fri, 1 Oct 2021 20:59:07 +0000 (20:59 +0000)
This removes checks from the CryptoMiniSat config for the existence of a couple of static libraries. Apparently, these are not necessary any more.

cmake/FindCryptoMiniSat.cmake

index fb4ca20695ec284f53cbb24882c6582a5d3fc43a..5b543aedc5213cbe6edc5505c3cc2bb38ac576b8 100644 (file)
@@ -42,20 +42,6 @@ if(NOT CryptoMiniSat_FOUND_SYSTEM)
     check_auto_download("CryptoMiniSat" "--no-cryptominisat")
   endif()
 
-  # Check for static libraries required by CryptoMiniSat
-  set(CMS_STATIC_LIBS "c;m;dl;pthread")
-  foreach(static_lib ${CMS_STATIC_LIBS})
-
-    # We can't use 'REQUIRED' here, as it needs a too-recent CMake
-    find_library(lib${static_lib}_static lib${static_lib}.a)
-
-    # Check if the static library has been found
-    if(NOT lib${static_lib}_static)
-      message(FATAL_ERROR "static lib${static_lib} not found")
-    endif()
-
-  endforeach()
-
   include(ExternalProject)
 
   ExternalProject_Add(