当前位置:首页 > linux教程 > 列表

分享一段一键编译安装gcc的shell脚本代码

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-22 08:56:55 浏览: 评论:0 

gcc包括C、C++、Objective-C、Fortran、Java、Ada和Go语言的前端,所谓强大,本文是我从别人的一篇文章看到的,他是通过一个shell脚本和一个Makefile就一键安装编译gcc了,好东西要分享出来.

今天看到一篇文章,作者通过一个shell脚本和一个Makefile,可以自动下载需要的所有安装包并且编译gcc:

  1. $ # Download the scripts using wget. 
  2. $ mkdir /opt/gcc-4.9.2 
  3. $ cd /opt/gcc-4.9.2 
  4. $ wget http://projects.joelinoff.com/gcc-4.9.2/bld.sh 
  5. $ wget http://projects.joelinoff.com/gcc-4.9.2/Makefile 
  6. $ chmod a+x bld.sh 
  7. $ make 
  8. [output snipped] 
  9. $ # The compiler is installed in /opt/gcc-4.9.2/rtf/bin 

我试了一下,果然很方便,只要有一台可以联网的机器就可以了,感兴趣的朋友可以试一试.

1)编译libiconv时可能会有“'gets' undeclared here“错误,请参考这篇文章。

2)如果机器是64位的,但是缺少32位的库文件,这样在编译gcc时会出现错误:“configure: error: I suspect your system does not have 32-bit developement libraries (libc and headers). If you have them, rerun configure with –enable-multilib. If you do not have them, and want to build a 64-bit-only compiler, rerun configure with –disable-multilib.”。提示需要配置“--disable-multilib”.

Tags: 安装gcc shell脚本代码

分享到: