Installation of GCC After you unpacked the gcc-2.95.2 archive don't enter the newly created gcc-2.95.2 directory but stay in the /usr/src directory. Install GCC by running the following commands:
mkdir /usr/src/gcc-build && cd /usr/src/gcc-build && ../gcc-2.95.2/configure --prefix=/usr \    --with-gxx-include-dir=/usr/include/g++ \    --enable-shared --enable-languages=c,c++ && make bootstrap && make install