ubuntu11.10搭建eclipse c/c++环境

1.安装eclipse:
第一种是经过Ubuntu自带的程序安装功能安装Eclipse,应用程序 ->Ubtuntu软件中心,搜Eclipse安装便可。
第二种方法是用命令:应用程序->附件->终端 而后输入(中间可能须要你输入密码):
sudo apt-get install eclipse
sudo apt-get install eclipse-pde
sudo apt-get install eclipse-jdt
2.安装CDT(c/c++插件)
(1)同 2 中 在Work with的框框下输入 http://download.eclipse.org/releases/indigo(注意若是你的eclipse版本是galileo,则输入
http://download.eclipse.org/releases/galileo )
选择Collaboration->Mylyn Bridge: C/C++ Development,安装,重启eclipse
(2)同上输入网址后选择 Programming Languages->Eclipse C/C++ Development
切记:(1)(2)顺序有依赖关系,安装顺序不能颠倒。
在安装cdt的时候,会报这个错误:
An error occurred while installing the items
session context was:(profile=PlatformProfile, phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Install, operand=null --> [R]org.eclipse.cvs 1.0.400.v201002111343, action=org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.InstallBundleAction).
The artifact file for osgi.bundle,org.eclipse.cvs,1.0.400.v201002111343 was not found.
后来google了一下,发现解决办法。
sudo apt-get install eclipse-pde
在装cdt插件,完成~
用Eclipse+CDT开发c/c++项目的时候,怎么能让Eclipse发挥代码自动提示的功能呢?其实也很简单:
打开终端:输入:$ gcc -version
获得相似的:gcc 版本 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) 
很容易就看到你当前使用的版本了。
启动Eclipse.进入:Windows-->Preferences-->C/C++找到Environment。增长两个变量:
CPLUS_INCLUDE_PATH: /usr/include/c++/4.6.1(个人gcc版本)

C_INCLUDE_PATH: /usr/includec++

3.特别注意:c/C++程序运行时,先创建build project,而后才运行,若是你直接运行的话会出现:launched failed,Binary not found.ubuntu

相关文章
相关标签/搜索