blob: 94bbab4dc889e49af0b271dc080c21c6e8010aa6 (
plain) (
blame)
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
37
38
39
40
|
#!/bin/bash -x
# Make sure we exit if there is a failure
set -e
if [ "${STP_VERSION}" == "UPSTREAM" ]; then
git clone --depth 1 git://github.com/stp/stp.git src
mkdir build
cd build
# Disabling building of shared libs is a workaround
cmake -DBUILD_SHARED_LIBS:BOOL=OFF -DENABLE_PYTHON_INTERFACE:BOOL=OFF ../src
# Don't try to build stp executable, there's an issue with using gcc4.8 with boost libraries built with gcc4.6
make libstp CopyPublicHeaders
elif [ "${STP_VERSION}" == "r940" ]; then
# Building the old "r940" version that for some reason we love so much!
git clone git://github.com/stp/stp.git src_build
mkdir build # This is actually the install directory
cd src_build/
git checkout bc78d1f9f06fc095bd1ddad90eacdd1f05f64dae # r940
# Fixes for GCC
# We don't try to fix clang compilation because there too many things that need
# fixing and it isn't really r940 anymore if we start doing that
git config --global user.name "travis"
git config --global user.email "travis@travis.123"
git cherry-pick ece1a55fb367bd905078baca38476e35b4df06c3
patch -p1 -i ${KLEE_SRC}/.travis/stp-r940-smtlib2.y.patch
# Oh man this project is so broken. The binary build directory is missing
mkdir -p bin
export CC=gcc
export CXX=g++
./scripts/configure --with-prefix=${BUILD_DIR}/stp/build --with-cryptominisat2
echo "WARNING FORCING GCC TO BE USED TO COMPILE STP"
make OPTIMIZE=-O2 CFLAGS_M32= install
else
echo "Unsupported STP_VERSION"
exit 1
fi
|