如何让 FlashBuilder 显示命令行输出?
具体来说,我想知道命令是什么...它生成并传递给 mxmlc 的所有标志。一定有办法,但我就是想不出来。
Specifically, I want to know what the commands are... all the flags it produces and passes to mxmlc. There must be a way, but I just can't figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最终方法 - 找到适合您平台的 mxmlc 可执行文件,然后创建具有相同名称的程序来记录参数。
如果您只是想掌握 mxmlc,可以使用它的文档和编译器选项 dump-config:
-dump-config=config.xml
。配置几乎包含了有关该项目的所有内容,我使用这样的配置来进行自动构建。Ultimate method - locate mxmlc executable for your platform, then create program with the same name which will log arguments.
If you just want to master mxmlc, there are docs for it and compiler option dump-config:
-dump-config=config.xml
. Config contains almost everything about the project and I used such config to make an automated build.官方答案 :
在 Flash Builder 中,选择“项目”>“属性> Flex编译器
在“附加编译器参数”中,指定以下参数:
-dump-config=pathname
,其中 pathname 指定系统上文件的绝对路径。The official answer:
In Flash Builder, select Project > Properties > Flex Compiler
In Additional Compiler Arguments, specify the following argument:
-dump-config=pathname
, where pathname specifies the absolute path to a file on your system.