Specifically, I want to know what the commands are... all the flags it produces and passes to mxmlc. There must be a way, but I just can't figure it out.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Ultimate method - locate mxmlc executable for your platform, then create program with the same name which will log arguments.
If you just want to master mxmlc, there are docs for it and compiler option dump-config: -dump-config=config.xml
. Config contains almost everything about the project and I used such config to make an automated build.
回答2:
The official answer:
- In Flash Builder, select Project > Properties > Flex Compiler
In Additional Compiler Arguments, specify the following argument:
-dump-config=pathname
, where pathname specifies the absolute path to a file on your system.