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.
Asked
Active
Viewed 3,677 times
9
-
I don't think there is a way; but you can guess most of the items if you go through the project properties. I think, other than paths, you'll have to specify most arguments yourself. – JeffryHouser Nov 08 '10 at 19:07
2 Answers
12
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.

alxx
- 9,897
- 4
- 26
- 41
7
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.