How do I get FlashBuilder to show me the command-l

2019-04-05 16:39发布

问题:

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:

  1. In Flash Builder, select Project > Properties > Flex Compiler
  2. In Additional Compiler Arguments, specify the following argument:

    -dump-config=pathname, where pathname specifies the absolute path to a file on your system.