R – How to tell mxmlc to treat warnings as errors

actionscript-3compiler-constructionflashmxmlc

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.

Best Answer

You cannot. The default mxmlc value for 'strict' is true. Setting it to true has no effect.

Related Topic