我正在尝试使用python支持编译gdb,因此我可以使用以下提供的PrettyPrinters: http://gcc.gnu.org/svn/gcc/trunk/libstdc++-v3/python
我从(http://ftp.gnu.org/gnu/gdb/gdb-7.6.1.tar.gz)下载了最新的gdb源代码,并在我的Centos 6.4上编译,如下所示: 1. ./configure --with-python 2.制作
我是否需要向--with-python提供路径或其他参数以及python库或可执行文件的路径?
编译运行gdb后,我看到了这个警告:
Python Exception <type 'exceptions.ImportError'> No module named 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.
这里的例外是显而易见的,无论我接下来做什么都会失败因为它需要gdb模块,但我还是试了一下。所以我在〜/ .gdbinit中添加了以下几行:
import sys
sys.path.insert(0, '/tmp/pretty/python')
from libstdcxx.v6.printers import register_libstdcxx_printers
register_libstdcxx_printers (None)
现在当我启动gdb时,我收到此错误:
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "/tmp/pretty/python/libstdcxx/v6/printers.py", line 18, in <module>
import gdb
ImportError: No module named gdb
Error while executing Python code.
有人可以帮我解决这个问题吗?
答案 0 :(得分:1)
如果有人偶然发现这篇试图在 Solus 4.1 中编译 Python 和 GDB 的帖子,请阅读我创建的以下设置指南(显然,将任何目录名称/树换成你自己的)
像这样设置 .profile:
source /usr/share/defaults/etc/profile
# Adding variables to PATH
PATH=$HOME/.local/bin:$PATH;
# Emscripten variables
PATH=$HOME/Applications/emsdk:$PATH;
PATH=$HOME/Applications/emsdk/node/12.18.1_64bit/bin:$PATH;
PATH=$HOME/Applications/emsdk/upstream/emscripten:$PATH;
# GDB variables
# Python variables
PATH=$HOME/Applications/Python-3.9.1/out/bin:$PATH;
LD_LIBRARY_PATH=$HOME/Applications/Python-3.9.1/out/lib:$LD_LIBRARY_PATH;
alias python=/home/jeremi-solus/Applications/Python-3.9.1/out/bin/python3.9
# GDBM variables
# GEF variables
# Various apps variables
PATH=$HOME/Applications:$PATH;
export PATH
export LD_LIBRARY_PATH
# ... remaining .profile
像这样设置.bashrc
#import profile data if exists
if [ -f "$HOME/.profile" ]; then
source "$HOME/.profile"
#else load default profile environment variables
else
source /usr/share/defaults/etc/profile
fi
# ... remaining .bashrc
编译Python(debug build + dev(--enable-shared
等价于python3-dev))(先创建“out”目录——然后从里面运行两个命令)
../configure --with-pydebug --with-lto --enable-optimizations --prefix=/home/jeremi-solus/Applications/Python-3.9.1/out --exec-prefix=/home/jeremi-solus/Applications/Python-3.9.1/out --enable-shared
make altinstall
编译完Python,就可以开始编译GDB了。在运行“configure”命令之前(编译之前)设置这些标志
export CFLAGS="-I/home/jeremi-solus/Applications/Python-3.9.1/out/include/python3.9d -I/home/jeremi-solus/Applications/Python-3.9.1/out/include/python3.9d"
export LDFLAGS="-L/home/jeremi-solus/Applications/Python-3.9.1/out/lib -lcrypt -lpthread -ldl -lutil -lm"
export LIBS="-lcrypt -lpthread -ldl -lutil -lm"
记下编译后的 Python 二进制文件的路径。您需要将此路径传递给 GDB 配置脚本
/home/jeremi-solus/Applications/Python-3.9.1/out/bin/python3.9
像这样运行配置脚本 - 确保在导出较早的设置值后不要关闭 bash shell!此外,请确保通过运行 .profile
source ~/.bashrc
变量
./configure --prefix=/home/jeremi-solus/Applications/gdb-10.1/out --exec-prefix=/home/jeremi-solus/Applications/gdb-10.1/out --enable-lto --with-python=/home/jeremi-solus/Applications/Python-3.9.1/out/bin/python3.9
制作 GDB(从 out 目录运行)
make
用这个命令启动 GDB
./gdb -data-directory ./data-directory
答案 1 :(得分:0)
CentOS 6 gdb已经支持Python。所以你真的不需要建立自己的。
但是,既然你做了,你是否尝试过做错误消息中建议的gdb?
另外,你“安装”了吗?你必须这样做才能使它正常工作。
最后,如果CentOS 6还没有包含libstdc ++漂亮打印机,我会感到惊讶。
答案 2 :(得分:0)
检查/ usr / local / share / gdb / python的权限。 即使在“make install”之后我也有了
drwxrwx --- 4 root root 4096 Mar 16 08:46 / usr / local / share / gdb
在将它们及其所有子目录设置为递归+ rx之后,警告消失了。