Hi Roman, 2011/3/5 Román González <[email protected]>: > ld: warning: in /Users/roman/.homebrew/lib/libncursesw.dylib, file was built > for unsupported file format which is not the architecture being linked > (i386)
This is the problem. You are using OS X 10.6 and Homebrew is building a 64 bit ncurses. However, GHC generates 32 bit code that expects to link against a 32 bit ncurses. In MacPorts, you would solve this by reinstall ncurses with the flag +universal that instructs MacPorts to build a universal binary containing both 32 and 64 bit versions of ncurses. I'm not sure what the equivalent would be for homebrew. Cheers, Max _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
