Re: Does Ant improves the performance in large c++ project than make?

2005-07-15 Thread Juergen Hermann
On Thu, 14 Jul 2005 17:45:13 -0700, Alexey N. Solofnenko wrote: It is quite possible. With make it is usually one file at a time compilation. ANT is smart enough to request a build for several files at a time. BTW, it sounds as if ccache and/or distributed compiling (ccdist I think) is a

Re: Does Ant improves the performance in large c++ project than make?

2005-07-15 Thread Simon Kitching
On Fri, 2005-07-15 at 08:19 +0200, Juergen Hermann wrote: On Thu, 14 Jul 2005 17:45:13 -0700, Alexey N. Solofnenko wrote: It is quite possible. With make it is usually one file at a time compilation. ANT is smart enough to request a build for several files at a time. BTW, it sounds as

Does Ant improves the performance in large c++ project than make?

2005-07-14 Thread hiren patel
Hi, We are having a large,multi platform,complex,commercial C++ project which is build by using a make peer PVCS merant make. In oreder to tailor the functionality of make, we have created the wrapper around it. Around 700 of make files in hierarchy with some top level makefiles are used

Re: Does Ant improves the performance in large c++ project than make?

2005-07-14 Thread Simon Kitching
On Thu, 2005-07-14 at 17:27 -0700, hiren patel wrote: Hi, We are having a large,multi platform,complex,commercial C++ project which is build by using a make peer PVCS merant make. In oreder to tailor the functionality of make, we have created the wrapper around it. Around 700 of make

Re: Does Ant improves the performance in large c++ project than make?

2005-07-14 Thread Alexey N. Solofnenko
It is quite possible. With make it is usually one file at a time compilation. ANT is smart enough to request a build for several files at a time. - Alexey. hiren patel wrote: Hi, We are having a large,multi platform,complex,commercial C++ project which is build by using a make peer PVCS