File tree Expand file tree Collapse file tree 4 files changed +30
-53
lines changed Expand file tree Collapse file tree 4 files changed +30
-53
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ diff --git a/scripts/make-build-header.sh b/scripts/make-build-header.sh
2
+ index e8f6746..1290024 100755
3
+ --- a/scripts/make-build-header.sh
4
+ +++ b/scripts/make-build-header.sh
5
+ @@ -20,7 +20,7 @@ warning () {
6
+
7
+ #--------------------------------------------------------------------------#
8
+
9
+ -[ ! -f VERSION -a ! -f ../VERSION ] && \
10
+ +[ ! -f VERSION.txt -a ! -f ../VERSION.txt ] && \
11
+ die "needs to be called from build sub-directory"
12
+
13
+ [ -f makefile ] || \
14
+ @@ -29,7 +29,7 @@ warning "could not find 'makefile'"
15
+ #--------------------------------------------------------------------------#
16
+ # The version.
17
+ #
18
+ -VERSION="`cat ../VERSION`"
19
+ +VERSION="`cat ../VERSION.txt`"
20
+ if [ x"$VERSION" = x ]
21
+ then
22
+ warning "could not determine 'VERSION'"
Original file line number Diff line number Diff line change @@ -181,14 +181,14 @@ glucose-download:
181
181
@ (cd ../glucose-syrup; patch -p1 < ../scripts/glucose-syrup-patch)
182
182
@$(RM ) $(glucose_rev ) .tar.gz
183
183
184
- cadical_release = rel-1.5.3
184
+ cadical_release = rel-1.7.2
185
185
cadical-download :
186
186
@echo " Downloading CaDiCaL $( cadical_release) "
187
187
@$(DOWNLOADER ) https://github.com/arminbiere/cadical/archive/$(cadical_release ) .tar.gz
188
188
@$(TAR ) xfz $(cadical_release ) .tar.gz
189
189
@rm -Rf ../cadical
190
190
@mv cadical-$(cadical_release ) ../cadical
191
- @ (cd ../cadical; patch -p1 < ../scripts/cadical-1.5.3 -patch)
191
+ @ (cd ../cadical; patch -p1 < ../scripts/cadical-1.7.2 -patch)
192
192
@ (cd ../cadical && ./configure)
193
193
# Need to rename VERSION so that it isn't picked up by `#include<version>` on
194
194
# macOS which is case insensitive
Original file line number Diff line number Diff line change @@ -124,11 +124,11 @@ foreach(SOLVER ${sat_impl})
124
124
message (STATUS "Building solvers with cadical" )
125
125
126
126
download_project (PROJ cadical
127
- URL https://github.com/arminbiere/cadical/archive/rel-1.5.3 .tar.gz
128
- PATCH_COMMAND patch -p1 -i ${CBMC_SOURCE_DIR} /../scripts/cadical-1.5.3 -patch
127
+ URL https://github.com/arminbiere/cadical/archive/rel-1.7.2 .tar.gz
128
+ PATCH_COMMAND patch -p1 -i ${CBMC_SOURCE_DIR} /../scripts/cadical-1.7.2 -patch
129
129
COMMAND cmake -E copy ${CBMC_SOURCE_DIR} /../scripts/cadical_CMakeLists.txt CMakeLists.txt
130
130
COMMAND ./configure
131
- URL_MD5 265b1a715000ed3c5b6de36ddd1278a0
131
+ URL_MD5 be646831a017f81b300664e58deba1b5
132
132
)
133
133
134
134
add_subdirectory (${cadical_SOURCE_DIR} ${cadical_BINARY_DIR} )
@@ -147,10 +147,10 @@ foreach(SOLVER ${sat_impl})
147
147
message (STATUS "Building with IPASIR solver linking against: CaDiCaL" )
148
148
149
149
download_project (PROJ cadical
150
- URL https://github.com/arminbiere/cadical/archive/rel-1.5.3 .tar.gz
151
- PATCH_COMMAND patch -p1 -i ${CBMC_SOURCE_DIR} /../scripts/cadical-1.5.3 -patch
150
+ URL https://github.com/arminbiere/cadical/archive/rel-1.7.2 .tar.gz
151
+ PATCH_COMMAND patch -p1 -i ${CBMC_SOURCE_DIR} /../scripts/cadical-1.7.2 -patch
152
152
COMMAND ./configure
153
- URL_MD5 265b1a715000ed3c5b6de36ddd1278a0
153
+ URL_MD5 be646831a017f81b300664e58deba1b5
154
154
)
155
155
156
156
message (STATUS "Building CaDiCaL" )
You can’t perform that action at this time.
0 commit comments