原标题:GDB 8.3 发布,大型功能版本(附编译安装更新方法)
Joel Brobecker刚刚宣布了大型GDB 8.3功能版本。 GNU调试器的这一更新带来了许多改进和新功能,可以帮助开发人员。
GNU Debugger 8.3版本为RISC-V GNU / Linux和RISC-V FreeBSD带来原生配置,支持C-SKY CPU架构,支持OpenRISC GNU/Linux,支持CLI和TUI上的终端样式,实验支持编译 /注入C++源代码进入劣势,GDB/GDBserver最终支持IPv6连接,以及其他各种改进。
对C++代码的编译和注入的支持取决于GCC7或更新的libcp1.so库,目前被认为是实验性的。
GDB 8.3 截图如上
总的来说,这是对这个常用的开源代码调试器的一个非常全面的功能更新。 那些想要了解更多关于GDB 8.3的人请查看其发布公告。
Ubuntu 18.04安装更新GDB 到 8.3 版本
linuxidc@linuxidc:~/linuxidc.com$ wget http://ftp.gnu.org/gnu/gdb/gdb-8.3.tar.xz
linuxidc@linuxidc:~/linuxidc.com$ tar -xf gdb-8.3.tar.xz
linuxidc@linuxidc:~/linuxidc.com$ cd gdb-8.3/
linuxidc@linuxidc:~/linuxidc.com/gdb-8.3$ ./configure
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
......
linuxidc@linuxidc:~/linuxidc.com/gdb-8.3$ make
make[1]: 进入目录“/home/linuxidc/linuxidc.com/gdb-8.3”
Configuring in ./libiberty
configure: creating cache ./config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... /home/linuxidc/linuxidc.com/gdb-8.3/missing makeinfo --split-size=5000000
configure: WARNING:
*** Makeinfo is missing. Info documentation will not be built.
checking for perl... perl
checking build system type... x86_64-pc-linux-gnu
在调试代码的过程中出现此错误,是由于 GDB 缺少 python 组件而导致调试错误,解决步骤如下。
出现:
linuxidc@linuxidc:~/linuxidc.com/gdb-8.3$gdb
Python Exception No module named gdb:
gdb: warning:
Could not load the Python gdb module from `/usr/local/share/gdb/python'.
Limited Python support is available from the _gdb module.
Suggest passing --data-directory=/path/to/gdb/data-directory.
修改方式:
将源码目录下的python模块拷贝到指定目录即可。
可以看出,应该放在/usr/local/share/gdb/python
gdb源码目录为
/home/linuxidc/linuxidc.com/gdb-8.3/gdb/python/lib/
完全拷贝即可,讨论及截图见http://www.linuxidc.net/thread-9423-1-1.html
看看,OK。
使用 GDB 恢复堆栈信息 https://www.linuxidc.com/Linux/2017-07/145508.htm
强大的C/C++ 程序调试工具GDB https://www.linuxidc.com/Linux/2016-09/135171.htm
Linux GDB调试 详述 https://www.linuxidc.com/Linux/2016-11/137505.htm
GDB调试命令总结 https://www.linuxidc.com/Linux/2016-08/133988.htm
GDB调试工具入门 https://www.linuxidc.com/Linux/2016-09/135168.htm
GDB 简易入门教程 https://www.linuxidc.com/Linux/2018-01/150573.htm
Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx
本文永久更新链接地址:https://www.linuxidc.com/Linux/2019-05/158617.htm返回搜狐,查看更多
责任编辑: