0

Is there any way to speed up MXMLC compiles using Flextasks in Ant in Eclipse. Compared to FDT and Flex Builder's in-built compilation, it is painfully slow.

Undistraction
  • 42,754
  • 56
  • 195
  • 331

2 Answers2

3

Try adding incremental="true" to your <mxmlc /> tag. That flag is on by default in Flex Builder, and stops the compiler from starting over each time.

Robert Bak
  • 4,246
  • 19
  • 20
2

HellFire Compiler Daemon (http://bytecode-workshop.com/) comes with a set of ant tasks that build Flex applications much faster with HFCD.

http://stopcoding.wordpress.com/2010/01/29/hfcd-ant-tasks-outperform-adobe-flex-ant-tasks/

Clement
  • 174
  • 1
  • 3