Skip to content

Commit cadf77a

Browse files
committed
Merge branch 'update-backends' into develop
2 parents b6c6ff3 + 1f80e63 commit cadf77a

File tree

2 files changed

+4
-19
lines changed

2 files changed

+4
-19
lines changed

bin/build.sh

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ source ${SMACK_DIR}/bin/versions
6060

6161
SMACKENV=${ROOT_DIR}/smack.environment
6262
WGET="wget --no-verbose"
63+
Z3_DOWNLOAD_LINK="https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VERSION}/z3-${Z3_VERSION}-x64-glibc-2.31.zip"
6364

6465
# Install prefix -- system default is used if left unspecified
6566
INSTALL_PREFIX=
@@ -190,30 +191,14 @@ puts "Detected distribution: $distro"
190191
# Set platform-dependent flags
191192
case "$distro" in
192193
linux-opensuse*)
193-
Z3_DOWNLOAD_LINK="https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VERSION}/z3-${Z3_VERSION}-x64-debian-8.10.zip"
194194
if [ ${INSTALL_LLVM} -eq 1 ] ; then
195195
DEPENDENCIES+=" llvm-clang llvm-devel"
196196
fi
197197
DEPENDENCIES+=" gcc-c++ make"
198198
DEPENDENCIES+=" ncurses-devel"
199199
;;
200200

201-
linux-@(ubuntu|neon)-16*)
202-
Z3_DOWNLOAD_LINK="https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VERSION}/z3-${Z3_VERSION}-x64-ubuntu-18.04.zip"
203-
if [ ${INSTALL_LLVM} -eq 1 ] ; then
204-
DEPENDENCIES+=" clang-${LLVM_SHORT_VERSION} llvm-${LLVM_SHORT_VERSION}-dev"
205-
fi
206-
;;
207-
208-
linux-@(ubuntu|neon)-18*)
209-
Z3_DOWNLOAD_LINK="https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VERSION}/z3-${Z3_VERSION}-x64-ubuntu-18.04.zip"
210-
if [ ${INSTALL_LLVM} -eq 1 ] ; then
211-
DEPENDENCIES+=" clang-${LLVM_SHORT_VERSION} llvm-${LLVM_SHORT_VERSION}-dev"
212-
fi
213-
;;
214-
215-
linux-@(ubuntu|neon)-20*)
216-
Z3_DOWNLOAD_LINK="https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VERSION}/z3-${Z3_VERSION}-x64-ubuntu-18.04.zip"
201+
linux-@(ubuntu|neon)-@(16|18|20)*)
217202
if [ ${INSTALL_LLVM} -eq 1 ] ; then
218203
DEPENDENCIES+=" clang-${LLVM_SHORT_VERSION} llvm-${LLVM_SHORT_VERSION}-dev"
219204
fi

bin/versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Z3_VERSION="4.8.10"
1+
Z3_VERSION="4.8.12"
22
CVC4_VERSION="1.8"
33
YICES2_VERSION="2.6.2"
4-
BOOGIE_VERSION="2.9.1"
4+
BOOGIE_VERSION="2.9.6"
55
CORRAL_VERSION="1.1.8"
66
SYMBOOGLIX_COMMIT="ccb2e7f2b3"
77
LOCKPWN_COMMIT="12ba58f1ec"

0 commit comments

Comments
 (0)