Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

How do I enable support for the new C++ standard on the Eclipse CDT indexer in Juno?

share|improve this question

marked as duplicate by Johan Lundberg, barti_ddu, Sam I am, Luca Geretti, d_r_w Apr 30 at 15:25

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 11 down vote accepted

Under Project propierties -> C/C++ General -> Preprocessor Include Paths, Macros etc. -> tab Providers -> CDT GCC Builtin Compiler Settings

Append to Command to get compiler specs:: -std=c++0x

Afterwards it should look something like:

${COMMAND} -E -P -v -dD ${INPUTS} -std=c++0x

Sources

Related

share|improve this answer
1  
Additionally, I had to restart Eclipse, before the changes took affect! – LCID Fire Dec 30 '12 at 14:52

Not the answer you're looking for? Browse other questions tagged or ask your own question.