Skip to content

Commit 36d02fc

Browse files
authored
Merge pull request #772 from winstonallo/patch-1
Add `dejagnu` to the quickstart installation command line
2 parents 5cb8d34 + d7e37d9 commit 36d02fc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,17 @@ $ ../gcc/configure \
7070
$ make -j4 # You can replace `4` with another number depending on how many cores you have.
7171
```
7272

73-
If you want to run libgccjit tests, you will need to also enable the C++ language in the `configure`:
73+
If you want to run libgccjit tests, you will need to
74+
* Enable the C++ language in the `configure` step:
7475

7576
```bash
7677
--enable-languages=jit,c++
7778
```
79+
* Install [dejagnu](https://www.gnu.org/software/dejagnu/#downloading) to run the tests:
80+
81+
```bash
82+
$ sudo apt install dejagnu
83+
```
7884

7985
Then to run libgccjit tests:
8086

0 commit comments

Comments
 (0)