views:

60

answers:

4

HI all ,

i am asking a quite descriptve question , so if possible suggest me some useful links or related information on how i can proceed to develop a network compiler (compiler that runs on the internet or LAN )

thanks & regards Shrey

A: 

you might be interested in something like Open MPI

  www.open-mpi.org/
A.Rashad
+1  A: 

Is this the type of thing you are looking for: http://distcc.samba.org/.

I can't find it, but I seem to reminder Borland doing something like this too...

kenny
+1  A: 

AT&T nmake and coshell make it easy to distributed compilation jobs over a network. They run on Unix and also on windows over AT&T U/Win.

It's not very clear from the question, but I hope that's what you wanted. It's hard to imagine what benefit there is for the compiler to be aware that it's running on the network. You want the build system (e.g., nmake) to be aware of that. Separation of concerns...

Norman Ramsey