I am trying to install a Python package that requires gcc 4.2 to run. My gcc correctly points to gcc-4.2, i.e.
$ gcc -v Using built-in specs. Target: i686-apple-darwin10 Configured with: /var/tmp/gcc/gcc-5664~38/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 Thread model: posix gcc version 4.2.1 (Apple Inc. build 5664)
However, my python is built using gcc 4.0, i.e.
$ python Python 2.5.4 (r254:67917, Dec 23 2008, 15:47:06) [GCC 4.0.1 (Apple Inc. build 5363)] on darwin Type "help", "copyright", "credits" or "license" for more information.
Is there a way to rebuild Python on GCC 4.2 without having to reinstall all my Python packages?
My operating system is Mac OS 10.6.
NOTE. This will not help me just point gcc to gcc-4.0. I need to use gcc-4.2.
source share