My Flex project has six sub-projects. How can I speed up compilation?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use a compiler other than
mxmlc.Flex Builder has a built-in compiler that uses incremental compilation, resulting in large performance gains (
mxmlccompiles everything from scratch and loads up the JVM each time).The Flex SDK includes a “compiler shell” called
fcshthat allows you to do incremental compilation, but the problem is that you can’t use it likemxmlc; you need to enter an interactive shell and issue custom commands to incrementally compile your projects. I’ve written a wrapper shell script (fcshctl) that allows you to usefcshlikemxmlcand there are a bunch of other wrappers that do more or less the same thing in different ways.