Skip to content

Commit

Permalink
Install gdb 14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
apbassett committed Aug 8, 2024
1 parent a5688d4 commit 94929e1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,16 @@ jobs:
id: run
run: |
# Install GDB
sudo apt-get install -y gdb
sudo apt-get install libgmp-dev libmpfr-dev libmpc-dev
wget ftp://ftp.gnu.org/gnu/gdb/gdb-14.1.tar.gz
tar -xzf gdb-14.1.tar.gz
cd gdb-14.1
./configure
make
sudo make install
echo "GDB installation complete"
gdb --version
cd ..
# Don't immediately fail if GDB exits with a non-zero code
set +e
Expand Down

0 comments on commit 94929e1

Please sign in to comment.