Ubuntu 10.04 Eclipse C/C++平台搭建[Linux安全]
本文“Ubuntu 10.04 Eclipse C/C++平台搭建[Linux安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
平台搭建环境:Ubuntu 10.04,最新的Ubuntu 10.10相信也一样.
1 安装eclipse:
第一种是通过Ubuntu自带的程序安装功效安装Eclipse,利用程序 ->Ubtuntu软件中央,搜Eclipse安装便可.
第二种办法是用号令:利用程序->附件->终端 然后输入(中间大概需求你输入密码):
sudo apt-get install eclipse
sudo apt-get install eclipse-pde
sudo apt-get install eclipse-jdt
2 安装中文语言包
菜单栏:Help------>Install New Software------>在Work with的框框下输入以下地址回车.
http://download.eclipse.org/technology/babel/update-site/R0.8.0/galileo
挑选简体中文: Babel Language Packs in Chinese (Simplified)
然后就是挑选简体中文安图提醒一步步安装
3 安装CDT(c/c++插件)
(1)同 2 中 在Work with的框框下输入 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.
后来谷歌了一下,发现办理办法.
sudo apt-get install eclipse-pde
在装cdt插件,完成~
用Eclipse+CDT开辟c/c++项目的时刻,怎么能让Eclipse施展代码自动提醒的功效呢?其实也很简单:
翻开终端:输入:$ gcc- v
得到近似的:gcc 版本 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)
很简单就看到你当前利用的版本了.
启动Eclipse.进入:Windows-->Preferences-->C/C++找到Environment.增添两个变量:
CPLUS_INCLUDE_PATH: /usr/include/c++/4.1.3(我的gcc版本)
C_INCLUDE_PATH: /usr/include
接下来新建一个c project.编写代码的时刻,当敲入'.'的时刻就会自动弹出可备用的代码.
以上是“Ubuntu 10.04 Eclipse C/C++平台搭建[Linux安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |