Carlos Arango’s Notebook

Como configurar Eclipse para desarrollo en C/C++ en Windows

Posted in Uncategorized by licheca on 08/05/2009
  1. Descarga Eclipse para desarrolladores en C/C++.

    Ten cuidado en descargar la versión para Windows.

  2. Descarga la distribución especial de MinGW de Nuwen.

    Esta distribución de MinGW contiene un conjunto adicional de librerias muy útiles, entre las cuales están las librerias Boost para C++.

  3. Extrae el archivo ZIP de Eclipse en un directorio sin espacios.

    Por ejemplo:

    C:\eclipse\

  4. Ahora extrae el archivo ZIP de MinGW a un directorio sin espacios.

    C:\MinGW\

  5. Ahora debes agregar el directorio bin de MinGW al Path del sistema.

    • Ve al Panel de control > Sistema, selecciona el Tab Opciones Avanzadas y has clic en el botón Variables de entorno.
    • En la lista Variables del sistema , selecciona la variable Path y has clic en el botón Modificar.
    • Ten cuidado al agregar al final de la cadena actual ;C:\MinGW\bin (No te olvides de agregar el punto y coma inicial).
  6. Ejecuta Eclipse.
    Abre la carpeta donde descomprimiste Eclipse y ejecuta el archivo eclipse.exe.
  7. Crea un nuevo proyecto de C++.
    En Eclipse, ve al menú File > New > C++ Project. En la lista de Toolchains debes ver ahora MinGW GCC.
Tagged with: , , , ,

How To Setup Eclipse for C/C++ development on Windows

Posted in Uncategorized by licheca on 08/05/2009
  1. Download Eclipse for C/C++ Developers

    Be careful to get the Windows version. Some of us, including me, would have appreciated this advice earlier.

  2. Download Nuwen’s special MinGW distribution

    This is a great MinGW distribution that adds a lot of useful libraries, including C++ Boost Libraries.

  3. Extract the Eclipse ZIP file to a directory with no spaces.

    I recommend something like:

    C:\eclipse\

  4. Now extract the MinGW ZIP file to a directory, again: no spaces.

    C:\MinGW\

  5. Now you need to add MinGW’s bin folder to the System’s Path.

    • Go to Control Panel > System, select the Advanced tab and then click on the Environment Variables button.
    • On the System Variables list, select the Path variable and clic the edit button.
    • Be careful to add at the end of the current string ;C:\MinGW\bin (Don’t forget the starting semicolon).
  6. Run Eclipse.
    Open the folder where you extracted Eclipse and run the eclipse.exe file.
  7. Create a new C++ project.
    On Eclipse, go to File > New > C++ Project. On the Toolchains list you should see now MinGW GCC on the list.
Tagged with: , , , , ,

Hello world!

Posted in general by licheca on 05/02/2009

Hi, I guess I’ll keep WordPress default entry title because this will be a programing related blog. Please excuse my english level and feel free to point out any mistakes you find on any of my posts. Be back soon.