gcc升级到了4.8.2,发现gdb调试看不到中间变量信息了,提示:No symbol "***" in current context。网上查资料怀疑是gdb版本问题。
gdb -v查看到我当前版本是7.2,于是打算升级gdb版本。
1、下载最新版gdb 7.10.1源码包
http://ftp.gnu.org/gnu/gdb/,
我下载的是7.10版本http://ftp.gnu.org/gnu/gdb/gdb-7.10.tar.gz,将源码包放在/usr/local目录
2. 解压缩gdb 7.10源码包
cd /usr/local
tar -zxvf gdb-7.10.tar.gz
3. 生成makefile,并编译
./configure
make
sudo make install
make install出了一些错误,网上找了好久,没找出原因,那就跳过去:
/usr/local/gdb-7.10/missing: line 81: makeinfo: command not found
4. 将编译好的gdb拷贝到/usr/bin目录中
cp gdb/gdb /usr/bin/gdb
5. 查看安装是否成功。
gdb -v
显示:
GNU gdb (GDB) 7.10
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
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 "x86_64-unknown-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
Find the GDB manual and other documentation resources online at:
For help, type "help".
Type "apropos word" to search for commands related to "word".
安装成功!