Difference between revisions of "Eclipse"
From HCL
Line 1: | Line 1: | ||
http://www.eclipse.org | http://www.eclipse.org | ||
* Use either Sun Java (Debian package: sun-java6-jre) or OpenJDK (Debian package: openjdk-6-jre). GNU Java (GCJ) may be too slow. If you experience problems with Sun Java, it may be IPv6 - to resolve it, add '''a new line''' <code>-Djava.net.preferIPv4Stack=true</code> in the end of '''eclipse.ini''' (it must be after <code>-vmargs</code>) | * Use either Sun Java (Debian package: sun-java6-jre) or OpenJDK (Debian package: openjdk-6-jre). GNU Java (GCJ) may be too slow. If you experience problems with Sun Java, it may be IPv6 - to resolve it, add '''a new line''' <code>-Djava.net.preferIPv4Stack=true</code> in the end of '''eclipse.ini''' (it must be after <code>-vmargs</code>) | ||
− | * It is recommended to use the latest version from http://www.eclipse.org/downloads/ Eclipse CDT - | + | * It is recommended to use the latest version from http://www.eclipse.org/downloads/ Eclipse CDT - packages for C/C++ Developers or Parallel Application Developers |
* How to install plugins: http://agile.csc.ncsu.edu/SEMaterials/tutorials/install_plugin/ http://www.venukb.com/2006/08/20/install-eclipse-plugins-the-easy-way/ | * How to install plugins: http://agile.csc.ncsu.edu/SEMaterials/tutorials/install_plugin/ http://www.venukb.com/2006/08/20/install-eclipse-plugins-the-easy-way/ | ||
== Plugins == | == Plugins == | ||
− | |||
* [[Eclox]] | * [[Eclox]] | ||
* [[Subversive]] or [[Subclipse]] | * [[Subversive]] or [[Subclipse]] |
Revision as of 12:33, 18 July 2011
- Use either Sun Java (Debian package: sun-java6-jre) or OpenJDK (Debian package: openjdk-6-jre). GNU Java (GCJ) may be too slow. If you experience problems with Sun Java, it may be IPv6 - to resolve it, add a new line
-Djava.net.preferIPv4Stack=true
in the end of eclipse.ini (it must be after-vmargs
) - It is recommended to use the latest version from http://www.eclipse.org/downloads/ Eclipse CDT - packages for C/C++ Developers or Parallel Application Developers
- How to install plugins: http://agile.csc.ncsu.edu/SEMaterials/tutorials/install_plugin/ http://www.venukb.com/2006/08/20/install-eclipse-plugins-the-easy-way/
Plugins
Usage
- To avoid unresolved inclusions at edit time, add paths to Project -> Properties -> C/C++ General -> Paths and Symbols -> Includes
- The comments
// TODO: ...
mark what you are going to do later. These parts of code can easily be found if you open the Tasks view (Window -> Show View -> Tasks)