summaryrefslogtreecommitdiff
path: root/contrib/get-abc
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/get-abc')
-rwxr-xr-xcontrib/get-abc10
1 files changed, 6 insertions, 4 deletions
diff --git a/contrib/get-abc b/contrib/get-abc
index 97fbb1503..f5a397039 100755
--- a/contrib/get-abc
+++ b/contrib/get-abc
@@ -1,4 +1,4 @@
-#!/bin/bash -x
+#!/bin/bash
#
set -e
@@ -42,11 +42,13 @@ cd alanmi-abc-$commit
cp src/base/main/main.c src/base/main/main.c.orig
sed 's,^// *#define ABC_LIB *$,#define ABC_LIB,' src/base/main/main.c.orig > src/base/main/main.c
-make libabc.a OPTFLAGS=-O
+# Build optimized, without readline, without pthreads.
+# These aren't necessary for our usage and we don't want the dependencies.
+make libabc.a OPTFLAGS=-O READLINE=0 PTHREADS=0
mv libabc.a libabc-static.a
make clean
-make libabc.a OPTFLAGS='-O -fPIC'
+make libabc.a OPTFLAGS='-O -fPIC' READLINE=0 PTHREADS=0
echo
echo ===================== Now configure CVC4 with =====================
-echo ./configure --with-abc=`pwd`
+echo ./configure --with-abc --with-abc-dir=`pwd`
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback