I belive we have broken the handling of the compilers under Xcode 4.2
on 10.6 fink at some point. While testing the new mysql-unified-5.0.96-1
packaging from...

http://sourceforge.net/tracker/?func=detail&aid=3572601&group_id=17203&atid=414256

on 10.6 x86_64 fink under Xcode 4.2, I noticed a new set of testsuite failures
in mysql-unified which are suppressed if I add...

SetCC: gcc-4.2
SetCXX: g++-4.2

This suggested that the patch we added to fink to insure that llvm-gcc wasn't
used on Xcode 4.2 (where it became the default compiler) has been lost. Sure
enough, we seem to have lost the code fragment...

# use Apple gcc-4.2 compilers on SL
case `uname -r` in
10.*)
        case \$compiler in
        cc|gcc)
                compiler="gcc-4.2"
                ;;
        c++|g++)
                compiler="g++-4.2"
                ;;
        esac
        ;;
esac

which was present in

https://github.com/fink/fink/blob/1e8710bf2ac1990562b56510fb7b3bb0b4437c2c/perlmod/Fink/PkgVersion.pm

We really don't want to be compiling against the llvm-gcc compilers from Xcode 
4.2 on 10.6.
Can we please fix this?
     Jack

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.devel
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to