summaryrefslogtreecommitdiff
path: root/contrib/get-cryptominisat
blob: a7a15520c8d8c05f3eb85b77b3e2876e3cab2027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
#
source "$(dirname "$0")/get-script-header.sh"

if [ -e cryptominisat5 ]; then
  echo 'error: file or directory "cryptominisat5" exists; please move it out of the way.' >&2
  exit 1
fi

version="5.0.2"

mkdir cryptominisat5
cd cryptominisat5
CRYPTOMINISAT_PATH=`pwd`

webget https://github.com/msoos/cryptominisat/archive/$version.tar.gz cryptominisat-$version.tar.gz
gunzip -f cryptominisat-$version.tar.gz
tar xfv cryptominisat-$version.tar
cd cryptominisat-$version

mkdir ../build
cd ../build

cmake -DENABLE_PYTHON_INTERFACE=OFF \
      -DCMAKE_INSTALL_PREFIX:PATH=$CRYPTOMINISAT_PATH/install \
      -DSTATICCOMPILE=ON \
      -DNOM4RI=ON \
      ../cryptominisat-$version

make install -j$(nproc)

cd ../

echo
echo ===================== Now configure CVC4 with =====================
echo ./configure --with-cryptominisat
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback