码迷,mamicode.com
首页 > 编程语言 > 详细

eclipse 配置 C++ 11 -- ubuntu 12.04

时间:2014-07-05 23:36:20      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:eclipse   c++11   

安装g++ 4.8

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.8
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
最后看看 g++ 的版本号,看是否安装成功
g++ --version

配置全局的编译参数:

选中eclipse工具栏 Project -> Properties -> C/C++ Build -> Settings -> Miscellaneous. 在右边的 Other flags 添加 -std=c++11
如果只是针对某个工程,则右键选中 目标工程-> Properties -> C/C++ Build -> Settings -> Miscellaneous. 在右边的 Other flags 添加 -std=c++11

配置eclipse CDT 的 indexer。方便编辑器正确的解析C++11的关键字、符号等。

选中eclipse工具栏 Project -> Properties->C/C++ General -> Preprocessor Include Paths, Macros etc.:

  1. 选择标签页“Providers
  2. Configuration栏选择Debug(之后还可配置“Release”)
  3. 标签页“Providers”下选中"CDT GCC Built-in Compiler Settings"。
  4. 反勾选 Use global provider shared between projects.
  5. Command to get compiler specs栏后面添加 "-std=c++11" (不带引号);
  6. 最后选则apply 和 OK。
  7. 最后重新build C/C++ 的 indexer. Project -> C/C++ Index -> Rebuild.

参考文章

eclipse 配置 C++ 11 -- ubuntu 12.04,布布扣,bubuko.com

eclipse 配置 C++ 11 -- ubuntu 12.04

标签:eclipse   c++11   

原文地址:http://blog.csdn.net/damonhao/article/details/36900565

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!