AIX 6.1 上的 GDB 没有 TUI 模式吗?
我们已经在 AIX 6.1 (gdb-6.0-1.aix5.1.ppc_AIX.rpm) 上安装了 GDB,我注意到没有用于“交互式源代码调试”的“TUI”(终端用户界面)模式?
对于 AIX 上的 GDB 来说这是已知的事情吗?有没有其他方法可以通过源代码调试我的应用程序,例如在 AIX 上使用 TUI 模式?也许以某种方式使用 TTY?
帮助
感谢林顿的
We have installed GDB on AIX 6.1 (gdb-6.0-1.aix5.1.ppc_AIX.rpm) and I notice that there is no "TUI" (terminal user interface) mode for "interactive source code debugging"?
Is that a known thing for GDB on AIX? Is there another way I can debug my application through the source code like using TUI mode on AIX? Perhaps using TTY somehow?
Thanks for the help
Lynton
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您需要更新的 GDB。 GDB 现在版本为 7.3.1,gdb 7.2 有一个
--tui
选项。您是否尝试过从源代码构建 GDB?
Perhaps you need a more recent GDB. GDB is now at version 7.3.1 and gdb 7.2 has a
--tui
option.Did you try to build GDB from its source code?
我的Mac OS X 10.6.6也有同样的问题,然后我尝试从源代码构建gdb 7.3.1,最终得到--tui选项。当我使用命令“gdb --tui program”并输入“run”进行调试时,我收到此消息:
然后我使用命令“sudo gdb --tui program”来解决它。
还有一个基于curses的cgdb,和TUI选项一样。
另请参阅问题Mac 上的 gdb 不支持 TUI?
There is a same problem in my Mac OS X 10.6.6, then I try to build gdb 7.3.1 from source code, finally get the --tui option. While I use command "gdb --tui program" and typed "run" to debug, I get this message:
Then I use command "sudo gdb --tui program" to resolve it.
And there is a cgdb which based curses, and like TUI option.
See also question No TUI support for gdb on Mac?