Skip to content

Update compilation instructions to install jq #4213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions COMPILING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@ We assume that you have a Debian/Ubuntu or Red Hat-like distribution.
yum install gcc72-c++ flex bison perl-libwww-perl patch tar
```

To compile JBMC, you additionally need the JDK and Maven 3.
To compile JBMC, you additionally need the JDK and Maven 3. You also
need jq if you wish to run the entire test suite.
On Debian-like distributions, do as root:
```
apt-get install openjdk-8-jdk maven
apt-get install openjdk-8-jdk maven jq
```
On Red Hat/Fedora or derivates, do as root:
```
dnf install java-1.8.0-openjdk-devel maven
dnf install java-1.8.0-openjdk-devel maven jq
```

2. As a user, get the CBMC source via
Expand Down