Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ptp-user] synchronized projects ** progress indication for remote compile

On Saturday, December 10, 2011 23:50:49 Dr. Christoph Pospiech wrote:
> [...]
> My observation is that there appears to be no progress indication for a
> remote compilation. It looks like eclipse hangs. I have to open a bash
> outside eclipse, ssh to the remote host and repeatedly call 'ps -ef | grep
> <my_userid>' to see that it compiles. Calling "ps" several times, I can
> check that the source file that is being compiled changes from one "ps"
> invocation to the next.

Hi,

I also found out that apparently eclipse is doing a remote make prior to each 
remote launch. While this is desirable in general, the remote make seems to 
recompile everything (as if doing a "make clean; make") which takes > 10min 
for each launch, even if I didn't touch any source.

As a brute force work around, I made the make target "all" a target without 
any actions, putting all recompile stuff temporarily in a target "dummy". That 
speeds up launching jobs considerably. But I hope that everyone agrees that 
this is a VERY dirty trick (I have to do a "git reset --hard" to get the old 
Makefile back prior to a real recompile).

So what should I do to debug the situation ?  Any way to tell eclipse to run 
"make -d" rather than "make" on the remote site ?  
-- 

Mit freundlichen Grüßen / Kind regards

Dr. Christoph Pospiech
High Performance & Parallel Computing
Phone: +49-351 86269826
Mobile: +49-171-765 5871
E-Mail: christoph.pospiech@xxxxxxxxxx
-------------------------------------------------------------------------------------------------------------------------------------------
IBM Deutschland GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
Geschäftsführung: Martina Koederitz (Vorsitzende), Reinhard Reschke, Dieter 
Scholz, Gregor Pillen, Joachim Heel, Christian Noll
Sitz der Gesellschaft: Ehningen / Registergericht: Amtsgericht Stuttgart, HRB 
14562 / WEEE-Reg.-Nr. DE 99369940 

On Saturday, December 10, 2011 23:50:49 Dr. Christoph Pospiech wrote:
> [...]
> My observation is that there appears to be no progress indication for a
> remote compilation. It looks like eclipse hangs. I have to open a bash
> outside eclipse, ssh to the remote host and repeatedly call 'ps -ef | grep
> <my_userid>' to see that it compiles. Calling "ps" several times, I can
> check that the source file that is being compiled changes from one "ps"
> invocation to the next.



Back to the top