But my linux version is redhat advanced server 2.1. is it support?. the last thing i did is run the command: rpm -e --nodeps gcc gcc-c++ .

is the command remove my gcc gcc-c++? if yes, how 2 bring it back?

Originally posted by perisekar
Hi may be you can try this

The solution could be :
(1) Download gcc_old-2.95.3-7.i586.rpm
(2) Remove the existing compiler/library, as root type:
rpm -e --nodeps gcc gcc-c++
(3) Install the old gcc (ver 2.95)
rpm -i gcc_old-2.95.3-7.i586.rpm
This will install GCC 2.95 in /opt/gcc295
(3) Create symbolic links in /usr/bin
ln -s /opt/gcc295/bin/gcc /usr/bin/gcc
ln -s /opt/gcc295/bin/gcc /usr/bin/cc
ln -s /opt/gcc295/bin/g++ /usr/bin/g++
ln -s /opt/gcc295/bin/g++ /usr/bin/c++

HTH