File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ We assume that you have a Debian/Ubuntu or Red Hat-like distribution.
32
32
To compile JBMC, you additionally need the JDK and the java-models-library.
33
33
For the JDK, on Debian-like distributions, do as root:
34
34
```
35
- apt-get install openjdk-8-jdk
35
+ apt-get install unzip openjdk-8-jdk
36
36
```
37
37
On Red Hat/Fedora or derivates, do as root:
38
38
```
39
- dnf install java-1.8.0-openjdk-devel
39
+ dnf install unzip java-1.8.0-openjdk-devel
40
40
```
41
41
42
42
2 . As a user, get the CBMC source via
@@ -180,11 +180,16 @@ Follow these instructions:
180
180
have to adjust the section in `src/common` that defines `CC` and `CXX`
181
181
for BUILD_ENV = Cygwin.
182
182
Then start the Cygwin shell.
183
- 4. In the Cygwin shell, type
183
+ 4. To compile CMBC, open the Cygwin shell and type
184
184
```
185
185
make -C src DOWNLOADER=wget minisat2-download
186
186
make -C src
187
187
```
188
+ 5. To compile JMBC, open the Cygwin shell and type
189
+ ```
190
+ make -C jbmc/src java-models-library-download
191
+ make -C jbmc/src
192
+ ```
188
193
189
194
(Optional) A Visual Studio project file can be generated with the script
190
195
"generate_vcxproj" that is in the subdirectory "scripts". The project file is
You can’t perform that action at this time.
0 commit comments