File tree 2 files changed +8
-9
lines changed
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.
88
88
```
89
89
3 . Get MiniSat2 by entering
90
90
```
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
96
93
```
97
94
4 . Type
98
95
```
Original file line number Diff line number Diff line change @@ -91,20 +91,22 @@ DOWNLOADER = lwp-download
91
91
minisat2-download :
92
92
@echo " Downloading Minisat 2.2.1"
93
93
@$(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
95
96
@rm -Rf ../minisat-2.2.1
96
97
@mv minisat2-2.2.1 ../minisat-2.2.1
97
98
@ (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
99
100
100
101
glucose-download :
101
102
@echo " Downloading glucose-syrup"
102
103
@$(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
104
106
@rm -Rf ../glucose-syrup
105
107
@mv glucose-syrup ../
106
108
@ (cd ../glucose-syrup; patch -p1 < ../scripts/glucose-syrup-patch)
107
- @rm glucose-syrup.tgz
109
+ @rm glucose-syrup.tar
108
110
109
111
ipasir-download :
110
112
# 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