ajc recompiles all files every time. How can I make it recompile only the files that have changed?
ajc 1.0 does not support incremental compilation, but the 1.1 release does when passed the -incremental option. It may still recompile files that have not changed, if they could be affected by aspects in particular ways, but the files compiled should be fewer and result in faster compiles. Further, the 1.1 release supports binary weaving, so you need not recompile if you already have .class files.
ajc 1.0 does not support incremental compilation, but since 1.1 ajc does when passed the -incremental option. It may still recompile files that have not changed, if they could be affected by aspects in particular ways, but the files compiled should be fewer and result in faster compiles. Further, the 1.1 release supports binary weaving, so you need not recompile if you already have .class files.
Related Questions
- Can we restrict some timekeeper access to client files and other information and basically restrict them to recording time and cost entries?
- Does Argentum Backup back up only new and changed files or does it process all files each time it updates the existing backup?
- ajc recompiles all files every time. How can I make it recompile only the files that have changed?