如何加快Flex的编译速度?

发布于 2024-09-15 10:33:26 字数 33 浏览 3 评论 0原文

我的 Flex 项目有六个子项目。如何加快编译速度?

My Flex project has six sub-projects. How can I speed up compilation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

水波映月 2024-09-22 10:33:26

使用 mxmlc 以外的编译器。

Flex Builder 有一个内置编译器,它使用增量编译,从而带来巨大的性能提升(mxmlc 从头开始​​编译所有内容并每次加载 JVM)。

Flex SDK 包含一个名为 fcsh 的“编译器 shell”,允许您进行增量编译,但问题是您不能像 mxmlc 那样使用它;您需要输入交互式 shell 并发出自定义命令来增量编译您的项目。我编写了一个包装器 shell 脚本 (fcshctl),它允许您像 mxmlc 一样使用 fcsh,并且还有许多其他包装器或多或少地执行相同的操作不同的方式。

Use a compiler other than mxmlc.

Flex Builder has a built-in compiler that uses incremental compilation, resulting in large performance gains (mxmlc compiles everything from scratch and loads up the JVM each time).

The Flex SDK includes a "compiler shell" called fcsh that allows you to do incremental compilation, but the problem is that you can't use it like mxmlc; you need to enter an interactive shell and issue custom commands to incrementally compile your projects. I've written a wrapper shell script (fcshctl) that allows you to use fcsh like mxmlc and there are a bunch of other wrappers that do more or less the same thing in different ways.

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