diff options
author | Philip Herron <philip.herron@embecosm.com> | 2020-12-16 14:23:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 14:23:26 +0000 |
commit | b472eeeeb2adb1cb08c90c3c330e6a3cf687be7b (patch) | |
tree | ae1b742928a0a3339d21c3506f344a725aaba72f | |
parent | 442b9caa12b0458b9edcbb362d64dd3280aafe07 (diff) | |
parent | 503eb9b35471e014597db4288fb06dafac8cf541 (diff) | |
download | gcc-b472eeeeb2adb1cb08c90c3c330e6a3cf687be7b.zip gcc-b472eeeeb2adb1cb08c90c3c330e6a3cf687be7b.tar.gz gcc-b472eeeeb2adb1cb08c90c3c330e6a3cf687be7b.tar.bz2 |
Merge pull request #65 from Rust-GCC/phil/dejagnu
Add missing Dejagnu dependancy to run test suite.
-rw-r--r-- | .github/workflows/ccpp.yml | 3 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index b91fbd7..019c476 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -29,7 +29,8 @@ jobs: libmpc-dev \ build-essential \ gcc-multilib \ - g++-multilib + g++-multilib \ + dejagnu - name: Configure run: | @@ -13,7 +13,7 @@ status reports from Philip Herron and tast tracking overviews. Fetch dependancies for ubuntu: ```bash -$ apt install build-essential libgmp3-dev libmpfr-dev libmpc-dev flex bison autogen gcc-multilib +$ apt install build-essential libgmp3-dev libmpfr-dev libmpc-dev flex bison autogen gcc-multilib dejagnu ``` Clone the repository |