> Okay, I admit it: GCC is smarter than I am, because even after reading the
> DOCS, I STILL can't get 2.95.1 to install. Could someone post a list of
> commands to type, in order? I can configure it, and build it, I just can't
> seem to get it to install and get the system using it.
Perhaps you could have posted the commands you have been executing, in
order, so that others can see what you've been doing wrong.
Also, I'm not sure what you mean by "get the system using it". The
"system" is not using gcc on its own; it is always the user who is
invoking gcc.
Anyway, the following sequence should do
tar xzvf gcc-...
cd gcc-2.95
mkdir obj
cd obj
../configure --prefix=/usr --enable-shared --enable-threads
make bootstrap
make install
Hope this helps,
Martin