Skip to content

Commit 605ca49

Browse files
authored
Upgrade to Kissat 3.1.1 (rust-lang#2756)
1 parent 6d628bf commit 605ca49

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/src/build-from-source.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In general, the following dependencies are required to build Kani from source.
1313
1. Cargo installed via [rustup](https://rustup.rs/)
1414
2. [CBMC](https://github.com/diffblue/cbmc) (latest release)
1515
3. [CBMC Viewer](https://github.com/awslabs/aws-viewer-for-cbmc) (latest release)
16-
4. [Kissat](https://github.com/arminbiere/kissat) (Release 3.0.0)
16+
4. [Kissat](https://github.com/arminbiere/kissat) (Release 3.1.1)
1717

1818
Kani has been tested in [Ubuntu](#install-dependencies-on-ubuntu) and [macOS](##install-dependencies-on-macos) platforms.
1919

kani-dependencies

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
CBMC_VERSION="5.91.0"
22
# If you update this version number, remember to bump it in `src/setup.rs` too
33
CBMC_VIEWER_VERSION="3.8"
4-
KISSAT_VERSION="3.0.0"
4+
KISSAT_VERSION="3.1.1"

scripts/setup/install_kissat.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ wget -O "$FILE" "$URL"
3434
tar -xvzf $FILE
3535
DIR_NAME="kissat-rel-${KISSAT_VERSION}"
3636
cd $DIR_NAME
37-
./configure && make kissat && sudo install build/kissat /usr/local/bin
37+
./configure --safe && make kissat && sudo install build/kissat /usr/local/bin
3838
cd -
3939

4040
# Clean up on success

0 commit comments

Comments
 (0)