如何让 FlashBuilder 显示命令行输出?

发布于 2024-10-01 16:48:24 字数 59 浏览 2 评论 0原文

具体来说,我想知道命令是什么...它生成并传递给 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诗酒趁年少 2024-10-08 16:48:24

最终方法 - 找到适合您平台的 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.

流心雨 2024-10-08 16:48:24

官方答案 :

  1. 在 Flash Builder 中,选择“项目”>“属性> Flex编译器

  2. 在“附加编译器参数”中,指定以下参数:

    -dump-config=pathname,其中 pathname 指定系统上文件的绝对路径。

The official answer:

  1. In Flash Builder, select Project > Properties > Flex Compiler

  2. In Additional Compiler Arguments, specify the following argument:

    -dump-config=pathname, where pathname specifies the absolute path to a file on your system.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文