User Tools

Site Tools


cplusplus:installing_codeblocks

This is an old revision of the document!


Installing Code::Blocks

For this course, we will be using the Code::Blocks IDE along with the GCC 4.8.1 (or more recent) compiler.

Requirements

Windows

Code::Blocks and the GCC 4.8.1 compiler is known to work well on Windows 7, Windows 9, and Windows 10. Specific notes on installing Code::Blocks on Windows appear below.

Linux

Most Linux distributions have a Code::Blocks package. You should use your package manager to install it. However, be aware of the following minimum distribution requirements:

  • Ubuntu: 14.04 or newer
  • Debian: Jessie or newer
  • Mint: Petra or newer
  • openSuse: 13.2 or newer
  • Fedora: 20 or newer

After installing, jump to After installing.

MacOS

There is a version of Code::Blocks for MacOS, but it is claimed to be very buggy. In addition, I have no idea if it supports C++11 (the version of C++ used in this course). You might be better off with Xcode, but I don't know what is involved in making that C++11 compliant. In short, if you want to use a Mac for this course, you're mostly on your own.

Installing on Windows

Download the codeblocks-13.12mingw-setup-TDM-GCC-481.exe bundle from the Code::Blocks Download binary page. Be sure you download codeblocks-13.12mingw-setup-TDM-GCC-481.exe; do not download codeblocks-13.12-setup.exe or codeblocks-13.12mingw-setup.exe. The download links are on the right. The last time I tried, the BerliOS link wasn't working, but the Sourceforge.net link worked fine.

After downloading, double click the installer to start the installer. Accept all the defaults and install Code::Blocks.1)

After installing

Set the compiler to use C++11 standards. This is very important!

There are several official (as well as unofficial) versions of C++ in common use. We will be learning C++11, which is a relatively new standard. Code::Blocks needs to be told that you want to use this version of C++ rather than an older one.

To do this:

  1. Go to Settings > Compiler…
  2. Make sure the Compiler settings tab is active.
  3. Find Have g++ follow the C++11 ISO C++ language standard [-std=c++11], check it, and click “OK”.

    On some Linux systems, you might not see any options under Settings > Compiler > Global compiler settings > Compiler settings. If this is the case, open the Other options tab and add -std=c++11 to the text area and click “OK”.

Testing your installation

Create a project

  1. Launch Code::Blocks
  2. When the main Code::Blocks window opens, click the “Create a new project” link.
  3. In the dialog box, select “Console application” and then click the “Go” button.
  4. Click “Next”
  5. When asked to choose between C or C++, select C++ and click the “Next” button.
  6. On the next dialog box, enter a name for your project (letters and numbers only, no spaces). If you want to create your project someplace other than the indicated directory, click the “…” button an navigate to the desired directory. Click the “Next >” button.
  7. Accept all the defaults on the next dialog and click “Finish”.

The project you just created should open. You can see the source code for the project if you expand {name-of-the-project} and “Sources”. (Make sure the “Projects” tab is selected in the left panel.) Double click on main.cpp to open it in the editor.

Run the project

  1. From the menu bar, select Build > Run (or press the corresponding keyboard shortcut).
  2. You will be asked if you want to build the project. Click “Yes”.

You should see some information about the building process in the lower panel, and after a short time you should see a terminal window that says “Hello world!” on the first line and “Press any key to continue” on the last line. Pressing any key will close this window.

1)
In the unlikely event that you have a previous Code::Blocks installation or have installed the MinGW compiler for other purposes, you will have to completely uninstall the previous Code::Blocks version, delete C:\Program Files\MinGW, and remove C:\MinGW\bin and C:\MinGW\MSYS\1.0\bin from your PATH.
cplusplus/installing_codeblocks.1451593599.txt.gz · Last modified: 2015/12/31 20:26 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki