Difference between revisions of "Mac OS X"

From HaskellWiki
Jump to navigation Jump to search
(remove standalone GHC installer, since with 6.12 this is not recommended anymore)
Line 23: Line 23:
 
See also [http://passingcuriosity.com/2009/haskell-on-snow-leopard/ Haskell on Snow Leopard].
 
See also [http://passingcuriosity.com/2009/haskell-on-snow-leopard/ Haskell on Snow Leopard].
   
To uninstall call:
+
To uninstall ghc call:
   
 
<code>
 
<code>

Revision as of 15:02, 16 November 2009

GHC

Mac OS X 10.5 (Leopard)

To install GHC on Mac OS X 10.5 (Leopard), there are the following options:

Mac OS X 10.6 (Snow Leopard)

Mac OS X 10.6.x (Snow Leopard) is currently not well supported. The problem is that GHC generates 32bit code, but gcc on Snow Leopard defaults to 64bit code now.

The workaround is to tell gcc to accept 32bit code:

  • install the Haskell Platform
  • patch the following wrapper scripts to include the flags "-optc-m32 -opta-m32 -optl-m32":
    • /usr/bin/ghc
    • /usr/bin/ghci
    • /usr/bin/runhaskell
    • /usr/bin/runghc
    • /usr/bin/hsc2hs

See also Haskell on Snow Leopard.

To uninstall ghc call:

sudo /Library/Frameworks/GHC.framework/Tools/Uninstaller

HUGS

Editors with Haskell support

Open Source

  • AquaMacs, a graphical Emacs version
  • Eclipse with the EclipseFP plugin
  • Emacs, is installed on every Mac
  • Leksah
  • MacVim, a graphical Vim version
  • Vim, is installed on every Mac
  • Yi (written in Haskell itself!), is available through cabal-install

Commercial

SubEthaEdit:

SubEthaEdit.png

TextMate:

TextMate.png

and Smultron:

Smultron.png

TextEdit is Mac's default text editor, a very basic editor that works fine for most uses, you must however be careful to put it into plain text mode using the Format menu.

Shipping Installable Haskell Applications

  • mkbndl builds installable Mac OSX applications from your Haskell project.

Links