从 Eclipse 调试 Haxe
我的目标是在 Linux 上的 Eclipse(发布 SWF)中调试 Haxe 应用程序。我已经手动安装了 Eclipse Helios、Flash 调试器版本和 Haxe。我已经安装了Eclihx。问题是我从 Eclipse 收到消息:
Flash 调试运行程序。此功能尚未准备好!
注意:我可以运行程序,因此 Haxe 编译可以工作。我还尝试将 -D
和 -debug
添加到 hxml 中。我一直在谷歌搜索那里,但没有成功。
而且,我不知道如何设置 Eclipse,所以当我运行时,浏览器会自动弹出 html。
My goal is to debug Haxe application in Eclipse (publishing SWF) on Linux. I have manually installed Eclipse Helios, Flash debugger version and Haxe. I have installed Eclihx. Problem is that I'm getting message from Eclipse:
Flash debug runner. This feature isn't ready!
Note: I can run program, so Haxe compiling works. I have also tried adding -D
and -debug
to hxml. I've been Googling out there, but no success.
And also, I don't know how to setup Eclipse so when I do run that automatically browser pops up with html.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,目前无法从 Eclipse 调试 Haxe。但是,您可以编译调试 Haxe 版本并使用 Adobe 的
fdb.exe
,它是 Flash 的命令行调试器。有了它,您应该能够设置断点并进行一些运行时状态检查。希望这有帮助!From what I know, it's not currently possible to debug Haxe from Eclipse. However, you could compile a debug Haxe build and and use Adobe's
fdb.exe
, which is the command line debugger for Flash. With it, you should be able to set breakpoints and do some run-time state inspection. Hope this helps!