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

CDT/Developer/FAQ

< CDT
Revision as of 16:55, 22 April 2009 by Jamesblackburn+eclipse.gmail.com (Talk | contribs) (Add links to wiki pages with CVS & add links to public git repos)

General

  • Is it fun writing code for the CDT?

You betcha! And the Eclipse SDK is such a great environment to work in. We've pumped out quality code by the boat load without a lot of effort.

Getting the source

CVS

Instructions for getting the source through CVS are 'Getting started with CDT development' and 'CDT/contributing'

Git

Git for Committers details using git in the Eclipse development process. This document describes how to use git to maintain your own development lines and use the tools to generate patches for upstream submission.

Some of the plugins are available in public git repositories. These repos track CVS mainline and recent maintenance branches.

If you want a plugin that's not here, contact the dev-list

CDT Plugins:

Scripts for creating git repos cloned from CVS:


Release Engineering

  • Where can I get the latest builds?

We have a build machine, cdt.eclipse.org, that we use for our builds. You can access them from the builds section on its home page. You can also generate your own builds by checking out the CDT out of CVS and using the Export -> Deployable Feature menu item provided by the PDE.

Question

  • Can I find a method declare when my mouse point to a method for the CDT?

If you have a method selected in the Editor, pressing F3 will take you to the declaration (i.e. the prototype) and Ctrl-F3 with take you to the definition (i.e. the body). Both options are also available from the Context menu.

  • Writing to a Console in Eclipse

see solution based on MessageConsole

  • Am I headless?

see solution based on Platform & PlatformUI

  • Converting between Reader and Streams
BufferedInputStream bis=new BufferedInputStream(url1.openStream());
BufferedReader br=new BufferedReader(new InputStreamReader(url1.openStream()));

More?

Many more questions are answered in the "Working on the CDT" section of the general CDT FAQ.

See also the unofficial CDT Developers FAQ.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.