File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -88,11 +88,8 @@ We assume that you have a Debian/Ubuntu or Red Hat-like distribution.
8888 ```
89893 . Get MiniSat2 by entering
9090 ```
91- cd cbmc-git
92- wget http://ftp.debian.org/debian/pool/main/m/minisat2/minisat2_2.2.1.orig.tar.gz
93- gtar xfz minisat_2.2.1.orig.tar.gz
94- mv minisat2-2.2.1 minisat-2.2.1
95- (cd minisat-2.2.1; patch -p1 < ../scripts/minisat-2.2.1-patch)
91+ cd cbmc-git/src
92+ gmake minisat2-download DOWNLOADER=wget
9693 ```
97944 . Type
9895 ```
Original file line number Diff line number Diff line change @@ -91,20 +91,22 @@ DOWNLOADER = lwp-download
9191minisat2-download :
9292 @echo " Downloading Minisat 2.2.1"
9393 @$(DOWNLOADER ) http://ftp.debian.org/debian/pool/main/m/minisat2/minisat2_2.2.1.orig.tar.gz
94- @tar xfz minisat2_2.2.1.orig.tar.gz
94+ @gunzip minisat2_2.2.1.orig.tar.gz
95+ @tar xf minisat2_2.2.1.orig.tar
9596 @rm -Rf ../minisat-2.2.1
9697 @mv minisat2-2.2.1 ../minisat-2.2.1
9798 @ (cd ../minisat-2.2.1; patch -p1 < ../scripts/minisat-2.2.1-patch)
98- @rm minisat2_2.2.1.orig.tar.gz
99+ @rm minisat2_2.2.1.orig.tar
99100
100101glucose-download :
101102 @echo " Downloading glucose-syrup"
102103 @$(DOWNLOADER ) http://www.labri.fr/perso/lsimon/downloads/softwares/glucose-syrup.tgz
103- @tar xfz glucose-syrup.tgz
104+ @gunzip glucose-syrup.tgz
105+ @tar xf glucose-syrup.tar
104106 @rm -Rf ../glucose-syrup
105107 @mv glucose-syrup ../
106108 @ (cd ../glucose-syrup; patch -p1 < ../scripts/glucose-syrup-patch)
107- @rm glucose-syrup.tgz
109+ @rm glucose-syrup.tar
108110
109111ipasir-download :
110112 # get the 2016 version of the ipasir package, which contains a few solvers
You can’t perform that action at this time.
0 commit comments