使用 compc 或 FlashBuilder 编译带有源附件的 Flex 库
我正在尝试使用 FlashBuilder 编译库 SWC,同时保留对源代码的引用,以便 asdocs 仍然会出现,并且调试器会在出现问题时显示源代码。我想要的结果与在“ActionScript Build Path”设置面板中设置“source-attachment”时得到的结果类似。 (参见图片)
这可能吗?我可以在 FlashBuilder 或 compc 中设置一个标志来执行此操作吗?
I am trying to compile a Library SWC using FlashBuilder while retaining the references to the source code so that asdocs will still appear and the debugger will show source code when there is a problem. The results I want are similar to what you get when you set a "source-attachment" in the "ActionScript Build Path" settings panel. (see pic)
Is this possible? Is there a flag that I can set in FlashBuilder or compc
to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,您无法将源代码构建到 SWC 文件中。但是,您使用
-debug
标志编译 SWC,它将保留源文件转换的标记。如果您有 SWC 的调试版本以及文件夹中的源代码,那么您可以编辑库的“源附件”并将其指向源文件夹。然后您将能够在调试器中单步调试源代码。Unfortunately you can't build source into SWC files. However, you compile your SWC with a
-debug
flag it will retain markers to source file transitions. If you have a debug version of your SWC and the source in a folder then you can edit the "Source Attachment" for your library and point it at the source folder. Then you'll be able to step through the source in the debugger.