是否可以配置gdb
tui接口以在另一个终端窗口中显示源代码(我可以将其放入另一个屏幕)或使用类似{来模拟此行为{1}}?
答案 0 :(得分:1)
我不知道有没有办法用gdb-tui特别做到这一点。 使用普通gdb或tui的hack是滥用python prompt_hook 功能,覆盖它以产生一些基于当前文件/行的效果 并返回正常提示。
下面是一个使用vim + clientserver功能在终端中启动vim的示例,并随着程序计数器的变化而跟随。
import os
import subprocess
servername = "GDB.VI." + str(os.getpid());
terminal = "gnome-terminal"
terminal_arg ="-e"
editor = "vimx"
term_editor = "%s --servername %s" % (editor, servername)
subprocess.call([terminal, terminal_arg, term_editor])
def linespec_helper(linespec, fn):
try:
x = gdb.decode_line(linespec)[1][0]
if x != None and x.is_valid() and x.symtab != None and x.symtab.is_valid():
return fn(x)
except:
return None
def current_file():
return linespec_helper("*$pc", lambda x: x.symtab.fullname())
def current_line():
return str(linespec_helper("*$pc", lambda x: x.line))
def vim_current_line_file():
aLine = current_line()
aFile = current_file()
if aLine != None and aFile != None:
subprocess.call([editor, "--servername", servername, "--remote", "+" + aLine, aFile])
old_prompt_hook = gdb.prompt_hook
def vim_prompt(current_prompt):
vim_current_line_file()
if old_prompt_hook != None:
old_prompt_hook(current_prompt)
else:
None
gdb.prompt_hook = vim_prompt