I have a large project that is built on a remote system. To facilitate assembly inside eclipse, I have a compilation goal with the following command:
ssh user @server "cd / project / build; gmake -j4"
The line ends, but it takes more than 5 minutes from the moment the assembly is completed until the moment that Eclipse detects the completion of the assembly. Any suggestions for enabling earlier build completion detection?
source
share