The Wayback Machine - https://web.archive.org/web/20230826021609/https://wiki.eclipse.org/Equinox/dev
Skip to main content
Jump to: navigation, search

Equinox/dev

About

This page is info for developers interested in contributing to the actual Equinox source code.

Part of Equinox is launching Eclipse. It's like bootstrap code that get's the main jvm going.

Opening code in Eclipse

The repository contains a .cproject:

 rt.equinox.framework$ find . | grep cproj
 ./bundles/org.eclipse.equinox.launcher/.cproject
 ./features/org.eclipse.equinox.executable.feature/.cproject  << Launcher in 'C'

You can import this project straight into Eclipse. (Import from Git, find projects, select the executable launcher).

There are many projects in Equinox. Most are java based except the executable launcher.

Gtk Specific Code

Please see Equinox/dev/gtk

Back to the top