How can I get CodeBlocks to compile with -std=c++0x with gcc?
I would like to see if they treat new features with useful syntax highlighting. Also, I have a lot of stuff n C++-0x now.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Easy: Put
-std=c++0x -U__STRICT_ANSI__or-std=gnu++0x -U__STRICT_ANSI__(if you want GNU extensions too) into either your project’s build options (compiler, other options), or set them in the global compiler options (settings menu).You need to undef
__STRICT_ANSI__or you get trouble with some legacy headers (I believe it’s mostlystdio) that are inevitably sometimes included from some 3rd party code.