How do I get FlashBuilder to show me the command-line output?
Asked Answered
A

2

9

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.

Aviva answered 8/11, 2010 at 16:51 Comment(1)
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.Freehold
C
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.

Confederacy answered 8/11, 2010 at 19:7 Comment(0)
N
7

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.

Null answered 17/7, 2011 at 0:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.