Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Need to enable C++11 in Codeblocks

I need to enable C++11 in Codeblocks 16.

Several tutorials explain that all one needs to do is select the "Have g++ follow the C++11 ISO C++ language standard -std=c++11 option in "Settings > Compiler... > Compiler Settings > Compiler Flags", however such an option does not appear in my Compiler Flags:

enter image description here

Others suggest just pasting -std=c++11 into "Other compiler options". However this doesn't allow me to build my code and shows this in the "Build Messages" bar:

enter image description here

I am using Codeblocks 16, with the GNU GCC Compiler that comes with it on Windows 7.

like image 907
Reinis Riekstins Avatar asked Mar 01 '16 13:03

Reinis Riekstins


2 Answers

You could always just select the -std=c++0x option, but another solution is to install more recent mingw version since the problem is obviously the compiler, not Code::Blocks

like image 140
Puzomor Croatia Avatar answered Sep 23 '22 13:09

Puzomor Croatia


This is how Code::Blocks 16.1 with the newest included version of GCC (TDM-GCC 4.9.2) is supposed to look like.

enter image description here

You can check your GCC version with the command

gcc --version

gcc.exe is located under ./CodeBlocks/MinGW/bin

When downloading from CodeBlock's website, make sure you download codeblocks-16.01mingw-setup.exe.

like image 27
Kake_Fisk Avatar answered Sep 25 '22 13:09

Kake_Fisk