LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   wat are the sequence of commands to upgrade GCC 3.2.0 to 3.4.0 (https://www.linuxquestions.org/questions/linux-newbie-8/wat-are-the-sequence-of-commands-to-upgrade-gcc-3-2-0-to-3-4-0-a-438588/)

newbloggy 04-25-2006 04:35 AM

wat are the sequence of commands to upgrade GCC 3.2.0 to 3.4.0
 
My distro is RedHat 9.0. I downloaded the gcc-3.4.0.tar.bz2. Can anyone send me the sequence of commands to upgrade GCC 3.2.0 to 3.4.0. I know some of the commands are:
./configure
make
I dont know the sequence can anyone guide me? Its urgent.

timmeke 04-25-2006 05:05 AM

The usual sequence is:
./configure
make
su (switch to root)
make install

However, I recommend that you wait for the experts' advice before upgrading gcc. This can have quite a lot of
impact on a system.

halturata 04-25-2006 05:43 AM

First you should do something like:
Code:

bzip2 -d gcc-3.4.0.tar.bz2
tar -xf gcc-3.4.0.tar
cd gcc-3.4.0
more README

and also Google a little bit for "Installin GCC on RedHat 9.0"

Peace.


All times are GMT -5. The time now is 05:48 PM.