`
420189155
  • 浏览: 53303 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

AS4 安装gcc

 
阅读更多

(1)安装kernel-headers-2.6.18-128.el5.i386.rpm

[root@localhost Server]# rpm -ivh ./kernel-headers-2.6.18-128.el5.i386.rpm

warning: ./kernel-headers-2.6.18-128.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

1:kernel-headers ########################################### [100%]

(2)安装glibc-headers-2.5-34.i386.rpm

[root@localhost Server]# rpm -ivh ./glibc-headers-2.5-34.i386.rpm

warning: ./glibc-headers-2.5-34.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

1:glibc-headers ########################################### [100%]

(3)安装glibc-devel-2.5-34.i386.rpm

[root@localhost Server]# rpm -ivh ./glibc-devel-2.5-34.i386.rpm

warning: ./glibc-devel-2.5-34.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

1:glibc-devel ########################################### [100%]

(4)安装libgomp-4.3.2-7.el5.i386.rpm

[root@localhost Server]# rpm -ivh ./libgomp-4.3.2-7.el5.i386.rpm

warning: ./libgomp-4.3.2-7.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

1:libgomp ########################################### [100%]

(5)安装rpm -ivh gcc-4.1.2-44.el5.i386.rpm

[root@localhost Server]# rpm -ivh gcc-4.1.2-44.el5.i386.rpm

warning: gcc-4.1.2-44.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

1:gcc ########################################### [100%]

(6)安装libstdc++-devel-4.1.2-44.el5.i386.rpm

[root@localhost Server]# rpm -ivh ./libstdc++-devel-4.1.2-44.el5.i386.rpm

warning: ./libstdc++-devel-4.1.2-44.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

1:libstdc++-devel ########################################### [100%]

(7)安装gcc-c++-4.1.2-44.el5.i386.rpm

[root@localhost Server]# rpm -ivh ./gcc-c++-4.1.2-44.el5.i386.rpm

warning: ./gcc-c++-4.1.2-44.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

1:gcc-c++ ########################################### [100%]

 此过程中有可能需要安装其他的安装包, 如下:

[root@localhost Server]# rpm -ivh gcc-4.1.2-14.el5.i386.rpm 

warning: gcc-4.1.2-14.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

error: Failed dependencies:

        glibc-devel >= 2.2.90-12 is needed by gcc-4.1.2-14.el5.i386

找到相应的安装包安装即可

[root@localhost Server]# rpm -ivh gcc-4.1.2-14.el5.i386.rpm 

warning: gcc-4.1.2-14.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

error: Failed dependencies:

        glibc-devel >= 2.2.90-12 is needed by gcc-4.1.2-14.el5.i386

[root@localhost Server]# rpm -ivh glibc-devel-2.5-18.i386.rpm 

warning: glibc-devel-2.5-18.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

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

   1:glibc-devel            ########################################### [100%]

分享到:
评论

相关推荐

    as400 安装gcc所需依赖【全】

    as400系统安装gcc所需要的依赖完整版 系统:as400 gcc版本:4.6.2 参考教程:http://www.youngiprofessionals.com/wiki/index.php/PASE/GCC (需要翻)

    RedHat_AS4上安装yum与gcc详细教程

    RedHat_AS4上安装yum与gcc详细教程

    mpc 0.9 安装GCC必需文件

    安装GCC必需的三个文件(gmp、mpfr、mpc)之一,gmp,安装此库之前需要先安装M4,否则无法完成安装。另:上述文件我已上传至我的资源,如有需要下载即可。 Mpc is a C library for the arithmetic of complex ...

    linux_kernel学习资料(as86-gnu_as-gcc等)

    linux_kernel学习资料(as86-gnu_as-gcc等)

    linux redhat as4 gcc编译包

    rpm -ivh gcc-3.4.4-2.i386.rpm

    gcc编译器常识介绍

    接着,GCC会调用ccl和as将处理后的源代码编译成目标代码;最后,GCC会调用链接程序ld,把生成的目标代码链接成一个可执行程序。 为了更好地理解GCC的工作过程,可以把上述编译过程分成几个步骤单独进行,并观察每...

    gcc-5.5.0.tar.gz

    GCC-5.5.0源码 This directory contains the GNU Compiler Collection (GCC). The GNU Compiler Collection is free software. See the files whose names start with COPYING for copying permission. The manuals...

    GCC入门到精通

    4. 链接(函数的链接和全局变量的链接):gcc test.o -o test GCC编译过程----Cont.: 单个文件:gcc test.c -o test 多个文件:gcc test1.c test2.c -o test 或gcc -c test1.c(默认生成test1.o) gcc -c test2.c...

    gcc_as_Opcode_rar.zip_gcc_opc

    gcc_as_opcode explanation

    gcc 和makefile 详解

    gcc/g++在执行编译工作的时候,总共需要4步  1.预处理,生成.i的文件[预处理器cpp]  2.将预处理后的文件不转换成汇编语言,生成文件.s[编译器egcs]  3.有汇编变为目标代码(机器代码)生成.o的文件[汇编器as]  4....

    gcc version 3.4.0 for windows

    binary/mingw32/native/x86_32/gcc/4.4.0 --with-gcc --with-gnu-ld --with-gnu-as -- disable-shared --disable-nls --disable-tls --with-gmp=/home/gfortran/gcc-home/bi nary/mingw32/native/x86_32/gmp --with-...

    The Definitive Guide to GCC, Second Edition

    The Definitive Guide to GCC, Second Edition has been revised to reflect the changes made in the most recent major GCC release, version 4. Providing in-depth information on GCC’s enormous array of ...

    gcc-2008-proceedings

    Taras Glek & David Mandelin Middle-End Array Expressions 33 Richard Guenther Adding Coding Rule Checking Capabilities to the GCC Toolchain 43 G. Marpons, Á. Polo, & J. Mariño Improving the precision...

    GCC 权威指南第二版英文原版.pdf

    Provides information on the features and functions of GCC, covering such topics as compiling Fortran applications, using GCC's Java compiler, optimizing code, using Autoconf and Automake, and using ...

    RedHat AS4 支持包 pango

    RedHat AS4 下许多应用都需用到这个支持包。比如中文输入法,GCC/G++安装,Linux下的Oracle安装等等。

    compiler-gcc5.h

    解决编译内核碰到的如下问题:fatal error: linux/compiler-gcc5.h: No such file。

    An Introduction to GCC by Brian Gough

    It will tell you how to use GCC as a programming tool. GCC is a programming tool, that’s true—but it is also something more. It is part of a 20-year campaign for freedom for computer users.

    MinGW_gcc7.3.0_x86_64_offline离线安装包

    MinGW_gcc7.3.0_x86_64_offline MinGW离线安装包,适合windows 64位系统,GCC版本为7.3.0 x86_64-7.3.0-release-win32-seh-rt_v5-rev0.7z

    arm-linux-gcc交叉编译器 4.3.2 part2

    libssp --disable-libstdcxx-pch --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --enable-shared --enable-symvers=gnu --enable-__cxa_atexit --with-pkgversion='Sourcery G++ Lite 2008q3-72' --with-...

    linux_as5_db_gcc_oracle_rpm.rar

    compat-gcc-34-c++-3.4.6-4.i386.rpm compat-libgcc-296-2.96-138.i386.rpm compat-libstdc++-33-3.2.3-61.i386.rpm compat-libstdc++-296-2.96-138.i386.rpm libaio-devel-0.3.106-3.2.i386.rpm compat-oracle-rhel...

Global site tag (gtag.js) - Google Analytics