Home > Article > Backend Development > How to Enable C 11 Support in the Eclipse CDT Indexer?
Enabling C 11 Support in Eclipse CDT Indexer
The Eclipse CDT indexer allows for highlighted errors in code prior to compilation. To enable support for the C 11 standard, follow these steps:
The updated command should resemble:
${COMMAND} -E -P -v -dD ${INPUTS} -std=c++0x
The indexer should now recognize C 11 features. It's important to note that these changes only affect the indexer, and compilation settings may still require modification for C 11 compatibility.
Refer to the Sources and Related sections for additional information on Eclipse CDT and C 11 support.
The above is the detailed content of How to Enable C 11 Support in the Eclipse CDT Indexer?. For more information, please follow other related articles on the PHP Chinese website!