At 2002-03-22 15:52, Wolfgang Thaller wrote: >A tar.gz file (14.5MB) of GHC for MacOS X is now available for download at: >http://www.foldr.org/Software/Haskell/ghc/ghc-5.03-13032002-MacOSX.tar.gz
Do you have 'gcc' installed on your system? It's not there by default on OS X, but your GHC seems to want it. My workaround is to pass these to GHC: -pgmc cc -pgma cc -pgml cc (actually I use $(CC) instead of cc in my Makefile). Consider using 'cc' instead of 'gcc' for default programs. -- Ashley Yakeley, Seattle WA _______________________________________________ Glasgow-haskell-users mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
