I am using ubuntu 9.10 and it comes with gcc 4.4. How can I install gcc 4.5 without screwing up my gcc 4.4. environment. I just need gcc 4.5 to compile 1 application.
Thank you.
|
I am using ubuntu 9.10 and it comes with gcc 4.4. How can I install gcc 4.5 without screwing up my gcc 4.4. environment. I just need gcc 4.5 to compile 1 application. Thank you.
| |||||||
feedback
|
|
My preferred method is to have a
I can then do I guess gcc-4.5 is currently in experimental as per this page so you would have to add experimental to the
| |||||||
feedback
|
|
The easiest way is to install into a private prefix:
In a private prefix, there is 0 chance you'll overwrite an existing file. You'll then need to add the prefix to your path. A second option is to give the new binaries a suffix and to use version specific runtime libraries:
although I can't promise some other file won't be modified. | |||||||||
feedback
|