Skip to content

Commit e95b637

Browse files
author
Everett Hildenbrandt
committed
README: example Ubuntu system dependencies installer
1 parent b0b41ef commit e95b637

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,39 @@ It is recommended that you use the latest versions of bison and flex since Maude
2525
You should use gcc 3.1 or later as there are code generation issues with the 3.0.* series.
2626
Maude requires the following packages:
2727

28+
On Ubuntu, you can run:
29+
30+
```sh
31+
sudo apt install gcc bison flex
32+
```
33+
34+
Additionally, you'll need:
35+
2836
- [GNU gmp](http://www.swox.com/gmp/)
2937
- [GNU libsigsegv](http://libsigsegv.sourceforge.net/)
3038
- [Tecla](http://www.astro.caltech.edu/~mcs/tecla/)
3139
- [BuDDY](http://sourceforge.net/projects/buddy)
3240

41+
On Ubuntu, you can run:
42+
43+
```sh
44+
sudo apt install libgmp-dev libsigsegv-dev libtecla-dev libbdd-dev
45+
```
46+
3347
### Optional Dependencies
3448

3549
- [CVC4](http://cvc4.cs.nyu.edu/web/)
3650
- [Yices2](https://github.com/SRI-CSL/yices2.git)
3751
- [GNU gperf (for Yices2)](https://www.gnu.org/software/gperf/)
3852

53+
**NOTE**: There is not an Ubuntu package for Yices2 yet.
54+
55+
On Ubuntu, you can run:
56+
57+
```sh
58+
sudo apt install cvc4 gperf
59+
```
60+
3961
### Building
4062

4163
First build the dependencies:

0 commit comments

Comments
 (0)