Difference between revisions of "Mac OS X"

From HaskellWiki
Jump to navigation Jump to search
(Added section "Links", with a link to "Using Haskell in an Xcode Cocoa project")
Line 59: Line 59:
   
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/mkbndl mkbndl] builds installable Mac OSX applications from your Haskell project.
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/mkbndl mkbndl] builds installable Mac OSX applications from your Haskell project.
  +
  +
== Links ==
  +
* [[Using Haskell in an Xcode Cocoa project]]; a description of how to add a Haskell module (callable from C) to an Xcode/Cocoa/Interface builder project on your Mac.
   
 
[[Category:OS]]
 
[[Category:OS]]

Revision as of 11:09, 30 October 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.

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