Installing gcc on RHEL4 Linux

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Installing gcc on RHEL4 Linux
# 1  
Old 11-28-2010
Installing gcc on RHEL4 Linux

Hi,

I'm a newbie in this forum and a newbie with administering Linux.

I need to install gcc 3.4.6-10 and I've downloaded and installed the rpm, but it seems that it did not do anything.

Code:
[root@server ~]# rpm -ivh gcc-3.4.6-10.src.rpm
   1:gcc                    ########################################### [100%]
[root@server ~]# rpm -q gcc
package gcc is not installed

What else should I do? Smilie

I hope someone can help me.

Thanks.
# 2  
Old 11-29-2010
You need to build the package before installing:

Code:
rpmbuild --rebuild gcc-3.4.6-10.src.rpm

Take a look here for more on the issue --> Source Package Files and How To Use Them
This User Gave Thanks to verdepollo For This Post:
# 3  
Old 11-29-2010
Also note that you will need a C compiler before you can compile GCC again.
This User Gave Thanks to pludi For This Post:
# 4  
Old 11-29-2010
thanks

thanks guys. i will try this. in the meantime i'm also trying to find an rpm file in itself.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

GCC installing

dear, please just didn't understand the problem that appears when i try to install ./configure here is the message that appears in unix when installing gcc root@ccbtest # ./configure checking build system type... /bin/bash: ./config.guess: No such file or directory configure: error: cannot... (3 Replies)
Discussion started by: semaan
3 Replies

2. Solaris

Installing gcc on SPARC 5.9

Hi, I am trying to install gcc on SPARC 5.9 pkgadd -d gcc-3.4.2-sol9-sparc-local i get the below error pkgadd: ERROR: attempt to process datastream failed - open of <gcc-3.4.2-sol9-sparc-local> failed, errno=2 pkgadd: ERROR: could not process datastream from... (3 Replies)
Discussion started by: saharookiedba
3 Replies

3. Solaris

Installing gcc - recieve error message gcc : cannot execute

AIM- Install Oracle 11g on Solaris using VMWare Steps 1.Logged on as root 2.Created subfolders ŕ /usr/local/bin & /usr/local/bin/gcc 3.Downloaded gcc & libiconv & unzipped them on my harddrive & burnt them on CD 4.Copied files from CD to /usr/local/bin/gcc 5.Terminal (root) ŕ pkgadd -d... (8 Replies)
Discussion started by: Ackers
8 Replies

4. Solaris

Installing gcc 2.8.1 on Solaris 10

Folks - This may sound like a newbee question - and it is. But a project that I'm managing is under a time crunch and I need a quick answer. IS it possible to install gcc 2.8.1 on a Solaris 10 Sun box? We have some old libraries that need that version of the compiler in order to work... (2 Replies)
Discussion started by: peridot
2 Replies

5. Linux

Installing Fonts on RHEL4

Hello All, I want to install some fonts from my unix box (Tru64) to linux box (RHEL4). I know what all steps are required, like > mkfontdir > fc-cache > xset fp rehash The problem is i am not able to find out which font is actually required from unix box to be installed on linux box. Is... (1 Reply)
Discussion started by: ankurjain
1 Replies

6. Solaris

Error when installing GCC

GCC 3.4.6 was installed in Solaris 2.8. I ran the commands ./configure and make. When running make install I got the below mentioned errors at the end. Please help me in resolving the same. make: *** Error 1 make: Leaving directory `/gmsp/antony/gcc-3.4.6/sparc-sun-solaris2.8/sparcv9/libf2c'... (1 Reply)
Discussion started by: chrisanto_2000
1 Replies

7. Solaris

error while installing gcc

Hi friends, i down loaded the gcc*.gz file and i am getting the following error when i am trying to install it on solaris 8 ======================================================= Processing package instance <SMCgcc342> from </export/gcc-3.4.2-sol8-sparc-local> gcc (sparc) 3.4.2 FSF... (1 Reply)
Discussion started by: sveera
1 Replies

8. Programming

Installing gcc

Hi all I'm trying to install the latest version of gcc but I keep getting this message on make; gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I./../zlib -I./../include -W -Wall -pedantic -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -g -O2 -c jartool.c jartool.c:234: getopt.h: No... (3 Replies)
Discussion started by: squeakywheel
3 Replies

9. UNIX for Dummies Questions & Answers

Problem installing gcc

Hi! I have downloaded a precompiled gcc package but I'm having problems installing it. It is supposed to install in /usr/local and there is plenty of space left there but during the installation I get the following error message “No space left on device”. Is it some kind of temp folder that is out... (2 Replies)
Discussion started by: alfabetman
2 Replies

10. Programming

Help!(Installing GCC.)

(Installing GCC: Configuration) In the document of Installing GCC, there is a sentence I don't understand: " Second, when configuring a native system, either cc or gcc must be in your path or you must set CC in your environment before running configure. Otherwise the configuration scripts... (2 Replies)
Discussion started by: wwz
2 Replies
Login or Register to Ask a Question