Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ How do I write my own eclipseexe platform launcher?"

 
(Correct to current location)
 
Line 9: Line 9:
 
If you do need to write your own native launcher, the obvious place
 
If you do need to write your own native launcher, the obvious place
 
to start is by looking at the source code for the Eclipse launcher.  This source
 
to start is by looking at the source code for the Eclipse launcher.  This source
is found in the Eclipse CVS repository in the <tt>platform-launcher</tt>
+
is found in the Eclipse CVS repository in the <tt>org.eclipse.equinox.executable</tt>
 
project.
 
project.
  

Latest revision as of 12:26, 19 September 2007

Most of the time, it is not necessary to write your own customized native launcher. The default launcher supports a large number of command-line arguments, allowing you to customize the splash screen, plug-in configuration, JVM, and much more. In some cases, you may want to wrap the native launcher in another launcher to prime the set of command-line arguments passed to the default launcher.


If you do need to write your own native launcher, the obvious place to start is by looking at the source code for the Eclipse launcher. This source is found in the Eclipse CVS repository in the org.eclipse.equinox.executable project.


See Also:

FAQ_How_do_I_run_Eclipse?

FAQ_Where_can_I_find_the_Eclipse_plug-ins?


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top