我是靠谱客的博主 平常鲜花,最近开发中收集的这篇文章主要介绍eclipse CDT 相关设置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1、eclipse CDT 支持C++11 设置

右击项目-> properties ,  如图

2、解决  unresolved inclusion 问题 (系统头件找不到,比如:iostream)

右击项目 > Properties > C/C++ General > Preprocessor Includes... > Providers 
and select "CDT GCC Built-in Compiler Settings". 

注意:一定要勾选上 “Use global provider shared between projects”

3、加入第三方 include 头文件

右击项目 > Properties > C/C++ General > Preprocessor Includes... > Entries ...>GNU C++  .....>

CDT User Setting Entries ...>
点击 Add 按钮,添加第三方头文件路径

4、解决

symbol cout could not be resolved

如何在保证,所有头文件都正确导入的情况下:

右击项目 ....> index ....> 选择 rebuild

Project > Properties > Settings > Binary Parsers > "GNU Elf Parser"

helped in my case. I had the "Elf Parser" checked.

 

5、解决__cplusplus < 201103L 问题,以支持C++11

Project->Properties->C++ General->Pahts and Symbols->Symbols(选项卡)

增加__cplusplus Symbol然后设置值为201103L

注意:cplusplus前面是双下划线

 

转载于:https://my.oschina.net/hanshubo/blog/738363

最后

以上就是平常鲜花为你收集整理的eclipse CDT 相关设置的全部内容,希望文章能够帮你解决eclipse CDT 相关设置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部