CentOS系统rpm安装gcc

前端之家收集整理的这篇文章主要介绍了CentOS系统rpm安装gcc前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先到http://vault.centos.org/6.3/os/x86_64/Packages/下载用到的rpm包,包括ppl-0.10.2-11.el6.x86_64.rpmcloog-ppl-0.15.7-1.2.el6.x86_64.rpmmpfr-2.4.1-6.el6.x86_64.rpm 、cpp-4.4.6-4.el6.x86_64.rpm 、kernel-headers-2.6.32-279.el6.x86_64.rpm、glibc-headers-2.12-1.80.el6.x86_64.rpm 、glibc-devel-2.12-1.80.el6.x86_64.rpm 、libstdc++-devel-4.4.6-4.el6.x86_64.rpm 、gcc-4.4.6-4.el6.x86_64.rpm 、gcc-c++-4.4.6-4.el6.x86_64.rpm


安装流程如下所示:

二,安装
将下载好的包传到Linux中后,使用命令进行安装

    
    
  • 1
  • 1
rpm -Uvh *.-nodeps force

运行这条命令后,会根据依赖按照顺序安装rpm

或者可以一步步安装:

[root@localhostgcc_rpm]#rpm-ivhppl-0.10.2-11.el6.x86_64.rpm

warning:ppl-0.10.2-11.el6.x86_64.rpm:HeaderV3RSA/SHA256Signature,keyIDc105b9de:NOKEY

Preparing...###########################################[100%]

1:ppl###########################################[100%]

cloog-ppl-0.15.7-1.2.el6.x86_64.rpm

warning:cloog-ppl-0.15.7-1.2.el6.x86_64.rpm:HeaderV3RSA/SHA256Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:cloog-ppl###########################################[100%]

mpfr-2.4.1-6.el6.x86_64.rpm

warning:mpfr-2.4.1-6.el6.x86_64.rpm:HeaderV3RSA/SHA256Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:mpfr###########################################[100%]

cpp-4.4.6-4.el6.x86_64.rpm

warning:cpp-4.4.6-4.el6.x86_64.rpm:HeaderV3RSA/SHA1Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:cpp###########################################[100%]

kernel-headers-2.6.32-279.el6.x86_64.rpm

warning:kernel-headers-2.6.32-279.el6.x86_64.rpm:HeaderV3RSA/SHA1Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:kernel-headers###########################################[100%]

glibc-headers-2.12-1.80.el6.x86_64.rpm

warning:glibc-headers-2.12-1.80.el6.x86_64.rpm:HeaderV3RSA/SHA1Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:glibc-headers###########################################[100%]

glibc-devel-2.12-1.80.el6.x86_64.rpm

warning:glibc-devel-2.12-1.80.el6.x86_64.rpm:HeaderV3RSA/SHA1Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:glibc-devel###########################################[100%]

gcc-4.4.6-4.el6.x86_64.rpm

warning:gcc-4.4.6-4.el6.x86_64.rpm:HeaderV3RSA/SHA1Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:gcc###########################################[100%]

libstdc++-devel-4.4.6-4.el6.x86_64.rpm

warning:libstdc++-devel-4.4.6-4.el6.x86_64.rpm:HeaderV3RSA/SHA1Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:libstdc++-devel###########################################[100%]

gcc-c++-4.4.6-4.el6.x86_64.rpm

warning:gcc-c++-4.4.6-4.el6.x86_64.rpm:HeaderV3RSA/SHA1Signature,51); font-family:Arial; font-size:14px; line-height:26px"> 1:gcc-c++###########################################[100%]

三,完成

用命令验证 执行gcc -v

原文链接:https://www.f2er.com/centos/376546.html

猜你在找的CentOS相关文章