如何告诉 mxmlc 将警告视为错误?
我正在使用 mxmlc 命令行工具编译纯 AS3 项目。 是否有命令行选项可以让 mxmlc 将警告视为错误? 我已通读所有编译器标志和 flex-config.xml,但无法找到此选项。
I'm using the mxmlc command line tool to compile a pure AS3 project. Is there a command line option to make mxmlc treat warnings as errors? I've read through all the compiler flags and flex-config.xml but wasn't able to find this option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。 “strict”的默认 mxmlc 值为 true。 将其设置为 true 没有任何效果。
You cannot. The default mxmlc value for 'strict' is true. Setting it to true has no effect.
怎么样...
alias -strict
以严格的错误检查模式运行 AS3 编译器。 必须严格
当 es3 为“true”时为“false”。
我相信你可以使用:
What about...
alias -strict
runs the AS3 compiler in strict error checking mode. strict must be
'false' when es3 is 'true'.
I believe you can just use: