本篇文章主要和大家分享一下Linux系统如何进行 c++ 开发环境搭建,本文实操记录、绝无水文,话不多说直接上干货。
Linux c++ 开发环境搭建详细步骤:
1、配置GCC
刚装好的系统中已经有GCC了,但是这个GCC什么文件都不能编译,因为没有一些必须的头文件,所以要安装build-essential这个软件包,安装了这个包会自动安装上g++,libc6-dev,linux-libc-dev,libstdc++6-4.1-dev等一些必须的软件和头文件的库。可以在新立得里面搜索build-essential或输入下面命令:sudo apt-get install build-essential
安装完成后写一个C语言程序testc.c测试一下。#include
./testc
显示 Hello Ubuntu!这样,C语言编译器就安装成功了;
2安装GTK环境
安装GTK环境只要安装一个gnome-core-devel就可以了,里面集成了很多其他的包。除此之外还要转一些其他的东西,如libglib2.0-doc、libgtk2.0-doc帮助文档,devhelp帮助文档查看,glade-gnome、glade-common、glade-doc图形界面设计等。
sudo apt-get install gnome-core-develsudo apt-get install libglib2.0-doc libgtk2.0-docsudo apt-get install devhelpsudo apt-get install glade-gnome glade-common glade-doc
安装完成后我们也同样做个测试程序#include
用下面命令编译运行 ./gtktest
会显示一个带有一个按钮的窗口,点击按钮以后窗口关闭,命令行显示Hello Ubuntu!GTK测试
c语言测试
二、安装IDE开发工具著名的开发工具有Kdeveloper, Anjuta, Eclipse+CDT。 其中kdeveloper是KDE平台得,在Gnome平台下使用需要安装一大堆KDE的东西,不喜欢,放弃了,虽然都传说Kdeveloper的功能是如何强大。而Eclipse+CDT用起来似乎不错,但是主要有两点不舒服,一是不能代码自动完成,二是编译速度比较慢。Eclipse + CDT的安装配置。
Java运行环境以及Eclipse3.3.0安装就不具体介绍。 详细情况见:http://blog.chinaunix.net/u/21684/showart_384208.html 1。下载CDT(http://www.eclipse.org/cdt/downloads.php)(只能下载4.0.x,如果是Eclipse3.3.0其他的选择合适的版本) 2。安装CDT插件(links方法来安装插件的方法,便于对插件的管理) A.在eclipse所在的目录(ECLIPSE_HOME)新建文件夹cdt 在文件夹cdt中新建文件夹eclipse(不要诧异就是eclipse) B. 把下载的cdt-master-4.0.0.zip中的内容解压到/ECLIPSE_HOME/cdt/eclipse中 C.在ECLIPSE_HOME新建文件夹links 在新建的links中添加文件cdt.link 文件的内容为 path=/ECLIPSE_HOME/cdt比如我的就是path=/opt/eclipse/cdt D.这样就完成了CDT插件的安装工作了,启动eclipse 就看到多了c,c++开发环境
三、Anjuta安装配置A. ubuntu feisty (for gusty, see below) repository (only i386 and only binaries)
-
Add deb http://anjuta.org/apt ./ in your /etc/apt/sources.list
-
sudo apt-get update
-
sudo apt-get install anjuta
-
sudo apt-get install anjuta-dev libgbf-dev libgdl-dev (if you want to write anjuta plugins or report bugs)
Note!! If you have installed older anjuta-2.2.0 previously using this repository, make sure to remove the file /etc/apt/preferences or remove the following version pin from the file before following the above steps. The version pin is no longer needed:
B. Ubuntu gusty repository
-
Add deb http://ppa.launchpad.net/robster/ubuntu gutsy universe in your /etc/apt/sources.list
-
sudo apt-get update
-
sudo apt-get install anjuta
-
sudo apt-get install anjuta-dev libgbf-dev libgdl-dev (if you want to write anjuta plugins or report bugs)
以上就是为各位朋友分享的相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多等着你!