tags:

views:

65

answers:

1

Related to another question, we want to change the eclipse run command.
I found that eclipse can run executing the script:

/usr/qnx630/host/qnx6/x86/usr/bin/qde.sh

But the startup configuration is not written there. The only thing the script does is executing the file:

/usr/qnx630/host/qnx6/x86/usr/qde/eclipse/eclipse

This file is a binary which ends calling another one with all the startup parameters for Eclipse.

So my question is: where can I find and change those parameters?

Thank you for your time.

+1  A: 

I would first look at the eclipse.ini file to check if your startup configuration is not better expressed there.
(that is one element for having a quicker eclipse)

In your case, it should be at:

/usr/qnx630/host/qnx6/x86/usr/qde/eclipse/eclipse.ini

If it is not there, you could create it. It would be detected by eclipse during launch.

VonC
Ok, it's not there, I'm going to get one, thx.
slipbull