I've successfully compiled and installed the newest gcc (4.3.2). How do I make Leopard use it now instead of it's default gcc 4.0?
thanks in advance
-b
You don't want to try and change to a non-apple supplied GCC. They patch it to support their various extensions for OSX. You can use your new gcc to build your posix apps, but if you try and replace your dev tools with it you'll have problems.
If you want to use it yourself from the command line by default, you should put /usr/local/bin in your path ahead of /usr/bin and /bin. Because Apple sucks, I had to add the following line to my ~/.bash_profile:
export PATH=/usr/local/bin:$PATH
(This is assuming you installed gcc-4.3.2 to /usr/local/bin which you should have done.)