******************************
安装 Eclipse
******************************
今天在Ubuntu 下装了Eclipse, 方法很简单,就是在Ubuntu Software Center 中搜一下就可以找到,下载完后,打开Eclipse,发现原来只是个空壳,里面什么编程语言都不支持。
然后想起Eclipse 是要装插件才可以编Java的,所以还是回到 Ubuntu Software Center 搜Eclipse plug-in ,才找到Java的。
用Ubuntu 的一个好处是,搜到软件就下载,下完后它会自动安装,完全不用自己理。
接下来我要找一个支持c++的插件。
21:02 2010-6-15
找到了,原来在eclipse 里c/c++的插件叫做 cdt,要在www.eclipse.org/cdt/里面下到,而且下到的一个nightly build, 我下的版本是7.0, 也就是一个叫做 cdt-master 7.0 的zip 文件(它的下载页面真是简朴,而且速度也够慢的)。
里面有安装的介绍
To install CDT:
- Download the master zip file and put it somewhere on your machine.
- Fire up Eclipse (The Platform Run-time 3.6 is minimum recommended)
- Help->Install New Software...
- Add... in the master zip as an Archive site
- Under CDT Main Features select the one you want. C/C++ Development Tools is the main one. The SDK adds in the schemas and source for building extensions to the CDT. The C/C++ Development Platform is the Tools without the GNU toolchain support.
- You can install other neat things, including the Mylyn bridge, from the CDT Optional Features category.
这个方法下载到cdt 的zip好像导入时有问题。
我换了另外一种方法:
在eclipse中: Help->Install New Software....
点add...
name 项填: cdt
location: 项 填: http://download.eclipse.org/tools/cdt/releases/new
点ok, 之后下面就会出现相关的cdt version了,我选了cdt 2.2, 安装成功,重启eclipse, 可以新建c++ project了!
******************************
初试gcc
******************************
照着书上打了一段程序:
#filename: hello.c
#include
int main(void)
{
printf("Hello world, Linux programming!");
return 0;
}
然后在命令行用 gcc hello.c -o hello 编译,但是編译错误。
这个问题应该与我的程序有关。
稍后再解决。