O gdb 7.8 não está disponível no repositório fiel . Mas você pode instalá-lo a partir da fonte.
Abra o terminal e digite os seguintes comandos
wget http://ftp.gnu.org/gnu/gdb/gdb-7.8.tar.xz
tar -xf gdb-7.8.tar.xz
cd gdb-7.8/
./configure
make
sudo cp gdb/gdb /usr/local/bin/gdb
Ele instalará o diretório gdb
in /usr/local/bin/
. Como /usr/local/bin/
é pesquisado antes de /usr/bin/
sempre que um comando é executado, executar gdb
executará gdb 7.8
.
Uma vez instalado, você pode verificar a versão do gdb usando
gdb --version
Deve sair
GNU gdb (GDB) 7.8
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
Se você quiser desinstalá-lo, basta remover gdb
de /usr/local/bin/
executando
sudo rm /usr/local/bin/gdb