Eclipse DLTK 和 Ruby 快速调试器
我正在尝试在 Windows Vista x64 计算机和 Ruby 1.92 环境上使用 Eclipse(已安装 DLTK)调试 Ruby 脚本。
我安装了 ruby-debug19、ruby-debug-base19、ruby-debug-ide19 gems,但仍然无法使用 Eclipse 调试 Ruby 脚本。 dlt 它说以下内容,
调试引擎未启动 选择了“快速 Ruby 调试器 (ruby-debug)”,但“ruby-debug”gem 似乎未安装在所选的 Ruby 解释器中 (C:\Ruby192\bin\ruby .exe)
我还将 c:\Ruby192\lib\ruby\gems
文件夹添加到 Eclipse 中 Ruby 解释器设置的系统库路径中。
我该如何解决这个问题?
I'm trying to debug Ruby scripts with Eclipse (DLTK installed) on a Windows Vista x64 machine and Ruby 1.92 environment.
I installed ruby-debug19, ruby-debug-base19, ruby-debug-ide19 gems, but I still can't debug Ruby scripts with Eclipse. dlt it says the following,
Debugging Engine not started The 'Fast Ruby Debugger (ruby-debug)' is selected, but the 'ruby-debug' gem doesn't seem to be installed in the selected Ruby Interpreter (C:\Ruby192\bin\ruby.exe)
I also added the c:\Ruby192\lib\ruby\gems
folder to the system library paths of the Ruby interpreter settings in Eclipse.
How do I fix this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Linux 上,我必须执行以下操作:
这也可以在 Windows 上工作吗(也许通过 cygwin 或 cmd.exe)?
On Linux, I had to do the following:
Might this also work on Windows (perhaps through cygwin or cmd.exe)?
你用 DevKit 安装 ruby-debug-ide 吗?
检查这个有关 Aptana 中设置调试的文章。虽然Aptana是基于eclipse的,
我不确定这是否可行。祝你好运。
并且您还必须要求文件顶部的environment.rb 也可以进行调试。
Do you install ruby-debug-ide with DevKit?
Check this article for setup debug in Aptana. Although Aptana is base on eclipse,
I'm not sure if this can work. Wish you good luck.
And you have to require environment.rb at the top of the file to be debugged also.
检查您安装的版本。 Ruby 1.92 环境兼容 64 位。如果是,那么也检查 Eclipse - 它是否兼容 64 位机器,因为这听起来有点像冲突问题。
Check the version you have installed. The Ruby 1.92 environment is compatible with 64 bit. If yes, then check the Eclipse too - whether it is of compatible for a 64-bit machine as it sounds a bit like a conflict problem.