Changes between Version 8 and Version 9 of code/tools/EclipseIDE
- Timestamp:
- Feb 15, 2015, 2:35:19 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/tools/EclipseIDE
v8 v9 1 1 = Tips on using Eclipse = 2 2 3 Eclipse is a complex IDE for Java and takes some time to get into. However it s flexibility and the way Eclipse is easily extendable with plugins, makes ita powerful IDE for any software development.3 Eclipse is a complex IDE for Java and takes some time to get into. However it's flexible and easily extendable with plugins such as C++ support, Python support or Android SDK. This makes Eclipse a powerful IDE for any software development. 4 4 5 To use Eclipse to develop Orxonox you need to install C++ support for Eclipse. This is VERY easy as it is provided via the CDT (C/C++ Development Tooling) plugin.5 In order to use Eclipse to develop Orxonox you need to install the CDT plugin which enables C++ development. 6 6 7 7 === For Ubuntu === 8 The current version of Ubuntu includes Eclipse Indigo (version 3.7.2)and a package that provides the CDT plugin. Just type:8 The current version of Ubuntu includes Eclipse version 3.8.1 and a package that provides the CDT plugin. Just type: 9 9 10 10 {{{ … … 12 12 }}} 13 13 14 If you want the newest version you will have to install it [wiki:EclipseIDE#Foreverybodyelse manually]. 15 14 16 === For Tardis @ ETH === 15 I asked ISG to upgrade to the newestEclipse Juno (version 4.2) and to pre-install the CDT plugin. Be sure to start it with17 We asked ISG to upgrade to the newer Eclipse Juno (version 4.2) and to pre-install the CDT plugin. Be sure to start it with 16 18 17 19 {{{ … … 19 21 }}} 20 22 23 ''Note: Newest version is 4.4.1'' 24 21 25 === For everybody else === 22 '''Note:''' The CDT plugin requires at least Eclipse version 3.6 and some newer versions of the plugin require version 3.7. Be sure you have a recent enough version of Eclipse installed on your system. 26 ==== A. Install Eclipse ==== 27 Go to the [https://eclipse.org/downloads/ download page] and choose the CDT version of Eclipse. 28 29 ''Note: If you want to use Eclipse for more than just C++ development, install the standard version of Eclipse and install the CDT plugin afterwards.'' 30 31 Eclipse comes pre-compiled and you just have to move it to where you want to use it. For Linux users it makes sense to create a symbolic link in their `/usr/local/bin/` folder to the eclipse executable. 32 33 ==== B. Install CDT Plugin ==== 34 ''Note: This step is only necessary if you haven't already installed the CDT version of Eclipse.'' 23 35 24 36 Open Eclipse and choose '''{{{Help->Install New Sofware...}}}'''. A window will open where you can add a repository for the CDT plugin. Enter '''{{{http://download.eclipse.org/tools/cdt/releases/juno}}}''' (or '''{{{indigo}}}''' or '''{{{helios}}}''' depending on your version of Eclipse) and press '''{{{Add...}}}'''. Give the repository a nice name and proceed. … … 26 38 Eclipse will access the repository and provide you with a list of features the repository provides. Choose at least the '''{{{Main Features}}}''' and click '''{{{Next >}}}'''. 27 39 28 Eclipse will now check the dependencies and if the plugin can be installed. If not it will provide a helpful error message. If yes,proceed and Eclipse will install the CDT plugin. Afterwards you will be asked to restart Eclipse.40 Eclipse will now check the dependencies and if the plugin can be installed. If the check fails it will provide a helpful error message. Otherwise proceed and Eclipse will install the CDT plugin. Afterwards you will be asked to restart Eclipse. 29 41 30 42 == Make Orxonox an Eclipse project ==