On Tue, 10 Sep 2002, Matt Seibert <[EMAIL PROTECTED]> wrote: > I have tried ant 1.5, 1.5.1, and the 1.6 beta, and they all > experience this problem. Any assistance would be GREATLY welcomed.
One thing you should check is whether it is really Ant or javac that is using up the memory. While <ant> and <antcall> (and with them <foreach>) will use up a lot of memory, they at least try to give it back to the garbage collector when done. javac on the other hand is known to leak memory, file handles and probably other resources as well. If you can, try to switch to some external compiler (i.e. use fork="true" or compiler="jikes") and see whether it improves the situation. Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
