Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enabling `-std=c++14` flag in Code::Blocks

I have installed Code::Blocks for Windows and want to compile C++14 code like generic lambdas but the binary version of Code::Blocks that I've installed from codeblocks.org doesn't support the flag
-std=c++14.

How do I update the compiler and enable -std=c++14 flag for Code::Blocks?

like image 996
Andreas DM Avatar asked Jul 01 '15 21:07

Andreas DM


People also ask

How do you add Compiler flags in code blocks?

Open your project and then go Project > Build Options > Compiler Flags . You can tick boxes in the "Compiler Flags" tab, and you can write other options in the "Other Options" tab.

How do I enable C++ in code blocks?

Run the downloaded installer. Accept the default options. Verify the Compiler's and Debugger's Path: (For CodeBlocks 13.12 For Windows) Goto "Settings" menu ⇒ "Compiler..." ⇒ In "Selected Compiler", choose "GNU GCC Compiler" ⇒ Select tab "Toolchain Executables" ⇒ Check the "Compiler's Installation Directory".


1 Answers

To compile your source code using C++14 in Code::Blocks, you, first of all, need to download and install a compiler that supports C++14 features.

Here’s how you can do it on Windows:

  1. Download MinGW from here (particular build) or from official site to choose options
  2. Extract it to for example: C:\ (result will be C:\MinGW)
  3. Open Code::Blocks
  4. Go to Settings => Compiler.
  5. Go to “Toolchain Executables”.
  6. In the top field “Compiler’s installation directory”, change the directory to the one where you extracted the compiler. E.g C:\MinGW.
  7. Change all the necessary files under “Program Files” to match the files under C:\MinGW\bin:

enter image description here

  1. Before you hit “OK”, go to the leftmost tab “Compiler settings”.
  2. Select “Compiler Flags”.
  3. For simplicity, right-click in the list somewhere and select “New Flag”:

enter image description here

  1. Type in the following and click "OK", and tick the box of the flag you just created:

enter image description here

  1. Lastly, you need to specify the debugger path. Go to "Settings" => "Debugger", click "Default" on the left-hand side and enter the new full path of the executable:

enter image description here


Now, try to compile a program with C++14 features:

#include <iostream>
#include <string>
using namespace std;

auto main() -> int
{
    auto add_two([](auto x, auto y){ return x + y; });

    cout << add_two("I"s, "t"s) << " works!" << endl;
}
like image 95
Andreas DM Avatar answered Sep 20 '22 06:09

Andreas DM