更改 NetBeans 调试器命令
我有一个 .gdbinit 文件,用于在从 NetBeans 附加调试器时设置 solib-absolute-prefix 和 solib-search-path。我已打开调试器控制台(通过将 -J-Dgdb.console.window=true
添加到 /usr/share/netbeans/6.9/etc/netbeans 中的 netbeans_default_options
.conf),它告诉我:
Debugger Command: [/path/to/gdb, -nx, --nw, --silent, --interpreter=mi]
-nx 阻止它加载我的 .gdbinit 文件。
NetBeans 中是否有任何方法可以 (1) 从该命令中删除 -nx,(2) 指定要使用 gdb 加载的 .gdbinit 文件,或 (3) 显式指定库搜索路径?
I have a .gdbinit file to set the solib-absolute-prefix and solib-search-path when attaching a debugger from NetBeans. I've turned on the debugger console (by adding -J-Dgdb.console.window=true
to netbeans_default_options
in /usr/share/netbeans/6.9/etc/netbeans.conf) and it tells me:
Debugger Command: [/path/to/gdb, -nx, --nw, --silent, --interpreter=mi]
The -nx is preventing it from loading my .gdbinit file.
Is there any way in NetBeans to either (1) remove -nx from that command, (2) specify a .gdbinit file to load with gdb, or (3) specify library search paths explicitly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系,您可以将 -J-Dgdb.init.enable=true 添加到 /usr/share/netbeans/6.9/etc/netbeans.conf 中的
netbeans_default_options
中,它将加载 .gdbinit 文件。Never mind, you can add
-J-Dgdb.init.enable=true
tonetbeans_default_options
in /usr/share/netbeans/6.9/etc/netbeans.conf and it will load the .gdbinit file.