"The -read_only_relocs flag is no longer used on OS X 64, which eliminates some warnings."
GHC 7 compiles fine, but there's an additional warning during linking.$ system_profiler SPSoftwareDataType | grep "System Version"System Version: Mac OS X 10.6.7 (10J869)$ ghc --versionThe Glorious Glasgow Haskell Compilation System, version 7.0.2$ cat hello.hs#!/usr/bin/env runhaskellmodule Main wheremain :: IO ()main = putStrLn "Hello World"$ ghc --make hello.hs[1 of 1] Compiling Main ( hello.hs, hello.o )Linking hello ...ld: warning: -read_only_relocs cannot be used with x86_64$ ./helloHello WorldCheers,Andrew Pennebaker
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe