Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 mxmlc 命令行工具来编译一个纯 AS3 项目。是否有命令行选项可以让 mxmlc 将警告视为错误?我已经阅读了所有编译器标志和 flex-config.xml 但无法找到此选项。
你不能。'strict' 的默认 mxmlc 值为 true。将其设置为 true 无效。
关于什么...
-compiler.strict
alias -strict 以严格的错误检查模式运行 AS3 编译器。当 es3 为 'true' 时,strict 必须为 'false'。
我相信你可以使用:
mxmlc --strict=true