Changes between Version 1 and Version 2 of How to setup Eclipse IDE for FFmpeg development


Ignore:
Timestamp:
07/04/2012 04:06:48 AM (11 months ago)
Author:
burek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • How to setup Eclipse IDE for FFmpeg development

    v1 v2  
    99  The usual way to do this is to start the Eclipse and go to the "Help - Install New Software" menu option. When the new dialog window shows, you'll have to do 2 things. The first thing is to tell Eclipse from where do you want to download/install stuff. In the latest Eclipse, the field name is named "Work with" and you should select the latest Eclipse version there. In my case, the option was named "Indigo - http://download.eclipse.org/releases/indigo". After that, you should type 'cdt' in the search filter field, below the "Work with" field. The results will appear depending on your Eclipse version, so select all CDT related packages and click "Next", accept the license agreement and install all that. Restart Eclipse if asked. 
    1010 
    11   [[Image()]] 
     11  [[Image(snapshot1.png)]] 
    1212 
    1313  If there were any errors during the installation, you can view the error log by going to "Help - About Eclipse SDK", then press the button "Installation Details", switch to the "Configuration" tab and press "View error log" :) Simple, right? :))) I had some issues with certificates, because I was using Debian. More info here: https://bugs.eclipse.org/bugs/show_bug.cgi?id=258301 If that's the case with you too, you can solve that issue by typing in console the following command: "update-ca-certificates -f -v" and repeating the installation process for CDT. Restart Eclipse if asked. 
     
    1616  You can use this tutorial: http://www.vogella.de/articles/EGit/article.html or you can just repeat the same installation process as for "cdt" but instead of "cdt" you need to type 'git'. The rest is the same. Restart Eclipse if asked. 
    1717 
    18   [[Image()]] 
     18  [[Image(snapshot2.png)]] 
    1919 
    2020* '''Clone the FFmpeg's git repository''' [[BR]] 
     
    2727  First of all, make sure you have c++, g++, make and other build tools installed. If you are using debian/ubuntu, you can type "apt-get install build-essential". Before you compile the source code for the first time, you'll have to go to your local git directory ("/home/<username>/git/ffmpeg") and type "./configure". After it finishes, go back to Eclipse and use the main menu option "Project - Build All". 
    2828 
    29   [[Image()]] 
     29  [[Image(snapshot3.png)]]