分享一段一键编译安装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:
- $ # Download the scripts using wget.
- $ mkdir /opt/gcc-4.9.2
- $ cd /opt/gcc-4.9.2
- $ wget http://projects.joelinoff.com/gcc-4.9.2/bld.sh
- $ wget http://projects.joelinoff.com/gcc-4.9.2/Makefile
- $ chmod a+x bld.sh
- $ make
- [output snipped]
- $ # 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脚本代码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)