Only build CryptoMiniSat library, no binary (#2657)
authorAndres Noetzli <andres.noetzli@gmail.com>
Mon, 22 Oct 2018 22:16:00 +0000 (15:16 -0700)
committerGitHub <noreply@github.com>
Mon, 22 Oct 2018 22:16:00 +0000 (15:16 -0700)
commit5cdd2d16670725e29b1f43510fc5246e9c861fe3
tree8b697498a2836c5874f1e4f2d39dc84901a108c6
parent8e58fec53e1bc9f1b9349a235e2ad76bda4d9dd9
Only build CryptoMiniSat library, no binary (#2657)

This commit changes the contrib/get-cryptominisat script to only build
the CryptoMiniSat library instead of both the library and the binary.
The advantage of this is that we can compile a static version of the
CryptoMiniSat library without having a static version of glibc or
libstdc++ (this is fine as long as we do a shared library build of
CVC4). This is an issue on Fedora (tested on version 25) where the
contrib/get-cryptominisat script was failing when building the
CryptoMiniSat binary due to the static version of these libraries not
being available. Since we just want to build the library, the commit
also changes the script to not install CryptoMiniSat anymore and updates
the CMake find script to accomodate the new folder structure. Side note:
the folder structure generated after this commit is a bit more uniform
with, e.g. the CaDiCaL script: The source files are directly in the
cryptominisat5 folder, not in a subfolder.
cmake/FindCryptoMiniSat.cmake
contrib/get-cryptominisat