欢迎来到天天文库
浏览记录
ID:8822305
大小:329.50 KB
页数:4页
时间:2018-04-08
《ubuntu下使用eclipse搭建cc开发平台》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、1.安装eclipse:第一种是通过Ubuntu自带的程序安装功能安装Eclipse,应用程序->Ubtuntu软件中心,搜Eclipse安装即可。第二种方法是用命令:应用程序->附件->终端然后输入(中间可能需要你输入密码):sudoapt-getinstalleclipsesudoapt-getinstalleclipse-pdesudoapt-getinstalleclipse-jdt2.安装中文语言包菜单栏:Help------>InstallNewSoftware------>在Workwith的框框下输入以下地
2、址回车。http://download.eclipse.org/technology/babel/update-site/galileo选择简体中文:BabelLanguagePacksinChinese(Simplified)然后就是选择简体中文安图提示一步步安装3.安装CDT(c/c++插件)(1)同2中在Workwith的框框下输入 http://download.eclipse.org/releases/galileo选择Collaboration->MylynBridge:C/C++Development,安装,
3、重启eclipse(2)同上输入网址后选择ProgrammingLanguages->EclipseC/C++Development切记:(1)(2)顺序有依赖关系,安装顺序不能颠倒。在安装cdt的时候,会报这个错误:Anerroroccurredwhileinstallingtheitemssessioncontextwas:(profile=PlatformProfile,phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Install,op
4、erand=null-->[R]org.eclipse.cvs1.0.400.v201002111343,action=org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.InstallBundleAction).Theartifactfileforosgi.bundle,org.eclipse.cvs,1.0.400.v201002111343wasnotfound.后来google了一下,发现解决办法。sudoapt-getinstalleclipse-
5、pde在装cdt插件,完成~用Eclipse+CDT开发c/c++项目的时候,怎么能让Eclipse发挥代码自动提示的功能呢?其实也很简单:打开终端:输入:$gcc-version得到类似的:gcc版本4.1.320070929(prerelease)(Ubuntu4.1.2-16ubuntu2)很容易就看到你当前使用的版本了。启动Eclipse.进入:Windows-->Preferences-->C/C++找到Environment。增加两个变量:CPLUS_INCLUDE_PATH:/usr/include/c++/
6、4.1.3(我的gcc版本)C_INCLUDE_PATH:/usr/include接下来新建一个cproject.编写代码的时候,当敲入'.'的时候就会自动弹出可备用的代码。2.参考了网上的各种资料,终于搭起来了3.1.最重要的东西,C++必要工具,安装的是GCC工具链,Make等一系列开发工具:4. sudoapt-getinstallbuild-essential1.2. 安装Eclipse2.sudoapt-getinstalleclipsesudoapt-getinstalleclipse-pde3.sudoapt
7、-getinstalleclipse-jdt4.3.打开Eclipse,打开Help->InstallNewSoftware,然后点击Add按钮,在弹出的对话框中Name项填入CDT5.Location项填入http://download.eclipse.org/tools/cdt/releases/indigo6. 点击Ok按钮,在下边出现的列表中,7.第一个CDTMainFeatures基本都要安装8.第二个中务必要把包含GNU字眼选择安装(这一步因为老是出现依赖错误,我就干脆先不装了,以后用到再说)9.4.配置Aut
8、otools支持10.基本上同第四步一致:11.Name项填入Autotools12.Localtion项输入:http://download.eclipse.org/technology/linuxtools/update13.点击Ok按钮,在下边出现的列表中,将此选项选中,然后安装即可14. Aut
此文档下载收益归作者所有