The Eclipse Embedded CDT project is hosted on GitHub as eclipse-embed-cdt/eclipse-plugins
TODO: update URLs
There are many ways you can contribute to this project, and all contributions are highly appreciated.
If you have interesting use cases, if you have custom configurations, and generally if you have any experience that you want to share with others, please use the Tapatalk forums.
If you are convinced you identified a bug (if you have doubts, use the forum), or you have a pertinent suggestion how to enhance the Eclipse Embedded CDT plug-ins, please use the GitHub Issues tracker.
Be sure you report only issues related to the Eclipse Embedded CDT plug-ins. DO NOT use it for issues related to the tools (QEMU, OpenOCD, Build tools, etc), which should be addressed to their corresponding trackers. J-Link specific questions should be addresses to SEGGER support.
Web content issues should be addressed to the web issues tracker.
Before reporting issues, please check the list of Known Issues and the FAQ.
When entering a new issue, be sure you provide:
- plug-ins version
- Eclipse version
- Java version
- operating system
- toolchain version
- the detailed and complete list of steps to reproduce the bug (mandatory)
Please understand that without being able to reproduce the bug we cannot identify your problem.
To be allowed to enter issues, you need to first login to GitHub.
Note: the text should respect the markdown syntax; preview the message before posting and correct if it does not look as expected, especially inline code or other quoted text.
The most useful contribution to the project is to submit code. GitHub greatly simplifies this process, by using pull requests.
For those not familiar with GitHub workflow, reading the official Using pull requests page can be of great help.
In short, the process is something like this:
- fork the Git repository to your own account
- create a custom branch
- make the desired changes
- commit to the custom branch
- submit the pull request to the
develop
branch
Please follow the steps in the prerequisites page.
$ git clone --branch=master --recurse-submodules https://github.com/eclipse-embed-cdt/eclipse-plugins.git eclipse-plugins.git
$ cd eclipse-plugins.git
$ mvn clean verify
The result is a p2 repository:
repositories/org.eclipse.embedcdt-repository/target/repository
Note: in some older versions, maven complained something about local
artefacts; in case this happens, add -Dtycho.localArtifacts=ignore
when
invoking maven.
The Eclipse build is described in the project web.
https://www.eclipse.org/cdt/developers.php
https://wiki.eclipse.org/CDT/policy
- use tabs, at 4
- code line size: 120 chars
- comments line size: 80 chars
The formatting settings are part of the project settings. They are derived from the standard Eclipse formatter settings and are similar to those used by CDT. The XML file for the style is formattersettings.xml.
The formatting is enforced as part of the Editor Auto Save actions (Project Properties -> Java Code Style -> Formatter). On saving files in Eclipse the file will be formatted and other code cleanups will be run (Project Properties -> Java Editor -> Save Actions). The XML file for the style is [cleanupsettings.xml](scripts/style/cleanupsettings.xml.
To ensure that all projects within the The Eclipse Embedded CDT project use the same settings and that all files follow the expected formatting rules, there are a set of scripts that can enforce the style in the scripts/style directory. See comments in those files for more information.
Contributors should agree to the Eclipse Contributor Agreement (https://www.eclipse.org/legal/ECA.php).