mxmlc 具有链接和未链接的 rsls?

发布于 2024-07-29 11:13:05 字数 208 浏览 4 评论 0原文

在 mxmlc 命令行上,我可以包含 RSL 文件的路径。 来选择在运行时链接这些 RSL。

-static-link-runtime-shared-libraries=false

我可以通过设置“如果我需要链接到某些 rsls 并嵌入(静态链接)其他 rsls?” 有没有办法为每个 rsl 设置链接设置?

On the mxmlc command line, I can include paths to RSL files. I can choose to link these RSLs at runtime by setting

-static-link-runtime-shared-libraries=false

What if I need to link to some rsls and embed (static-link) other rsls? Is there a way to set the link settings for each rsl?

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

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

发布评论

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

评论(1

酸甜透明夹心 2024-08-05 11:13:05

在 Flex 配置文件中:

<compiler.include-libraries dir="C:\rsls\" append="true">
    <library name="yrCoolLibrary.swc" />
</compiler.include-libraries>

命令行(通过 ant):

<arg line="-compiler.include-libraries C:\rsls\yrCoolLibrary.swc"/>

in a flex config file:

<compiler.include-libraries dir="C:\rsls\" append="true">
    <library name="yrCoolLibrary.swc" />
</compiler.include-libraries>

command line (via ant):

<arg line="-compiler.include-libraries C:\rsls\yrCoolLibrary.swc"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文