Red Hat Enterprise Linux默认是没有安装GCC的,如果要安装GCC,最简单的方法,是配置Red Hat Enterprise Linux的本地yum源,步骤如下:
1、把RHEL6.2镜像的光盘或U盘挂载到某个目录,如:/mnt
mount /dev/cdrom /mnt
2、再新建一个本地源文件,如下所示:
[root@ www.linuxidc.com ~]# vim /etc/yum.repos.d/rhel-local.repo
[rhel-local]
name=Red Hat Enterprise Linux 6.2
baseurl=file:///mnt
enabled=1
gpgcheck=1
gpgkey=file:///mnt/RPM-GPG-KEY-RedHat-release
3、清除yum缓存,再使用yum install安装软件
yum clean all #清除yum缓存
yum install -y gcc #安装gcc
yum -y install gcc-c++ #安装gcc-c++
yum -y install gcc-gfortran #安装gfortran
Ubuntu 12.04嵌入式交叉编译环境arm-linux-GCC搭建过程图解 http://www.linuxidc.com/Linux/2013-06/85902.htm
Ubuntu 12.10安装交叉编译器arm-none-linux-gnueabi-GCC http://www.linuxidc.com/Linux/2013-03/82016.htm
Ubuntu下Vim+GCC+GDB安装及使用 http://www.linuxidc.com/Linux/2013-01/78159.htm
Ubuntu下两个GCC版本切换 http://www.linuxidc.com/Linux/2012-10/72284.htm
GCC 的详细介绍:请点这里
GCC 的下载地址:请点这里
更多RedHat相关信息见RedHat 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=10
本文永久更新链接地址:http://www.linuxidc.com/Linux/2014-05/101785.htm