>>>>> "AC" == Kontorotsui <[EMAIL PROTECTED]> writes:
AC> Hello, so far I worked using the good old xemacs + Makefile
AC> combo. As soon as my application grow and more classes are
AC> created, I'm beginning to feel the weight of a full scale
AC> compilation (like 20 seconds now, but it's increasing fast)
AC> even after I change 1 line of code in 1 class.
AC> Now, I don't think there is a way to recompile only the class
AC> I changed, like we did in C, is this correct? I remember
AC> someone who wrote, weeks ago, about a tool that can check the
AC> classes and make the compiler work only on the sources that
AC> really need to be compiled again, but maybe I'm mistaken.
The JBuilder compiler does automatic dependecy detection and minimal
recompilation. Although the compiler, called bmj, was distributed as a
.exe it's actually written in Java and we have it working now on
Solaris and Linux as well. With bmj you recompile an entire package
with a command like this:
bmj -sourcepath ./src/java -d ./classes -p com.mycompany.mypackage
bmj will find all the package dependedncies and the set of files that
need to be recompiled. If you are in the Primetime (JBuilder for Unix)
beta you can look at the bcjbmj.jar file. Otherwise you can use wine
to run the bmj.exe included with JBuilder.
--Paolo
JBuilder development team.
Inprise corp.
----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]