Difference between revisions of "Mac OS X"

From HaskellWiki
Jump to navigation Jump to search
(Rewrite the GHC section entirely)
(added some info about installing from MacPorts)
Line 12: Line 12:
 
=== MacPorts ===
 
=== MacPorts ===
   
[http://www.macports.org MacPorts] contains a Portfile for [http://trac.macports.org/browser/trunk/dports/lang/ghc/Portfile ghc].
+
[http://www.macports.org MacPorts] contains a Portfile for [http://trac.macports.org/browser/trunk/dports/lang/ghc/Portfile GHC]. Using MacPorts to install GHC will take a while as your computer will compile all the source files itself. In most cases, you're better off installing GHC through the standalone installer (see next section).
  +
  +
If you have MacPorts installed and haven't told it to selfupdate in a while, do that first:
  +
  +
$ sudo port selfupdate
  +
  +
This will take up to a minute, so be patient. It tells MacPorts to retrieve the latest package information from its servers. Next, install GHC:
  +
  +
$ sudo port install ghc
  +
  +
MacPorts will first download and install any dependencies that are needed to install GHC; then it will download, build and install GHC itself.
  +
   
 
=== Standalone Installer for Mac OS X 10.5 (Intel) ===
 
=== Standalone Installer for Mac OS X 10.5 (Intel) ===
   
There is a [http://haskell.org/ghc/download_ghc_6_10_1.html#macosxintel standalone installer] available for Mac OS X 10.5 (Intel). It requires Xcode 3.0 to be already installed. If you do not have Xcode, you can download it for free from [http://developer.apple.com/ Apple Developer Connection].
+
There is a [http://haskell.org/ghc/download_ghc_6_10_1.html#macosxintel standalone installer] available for Mac OS X 10.5 (Intel). It requires Xcode 3.0 to be already installed. If you do not have Xcode, you can install it from the installation DVD you got with you Mac or download it for free from [http://developer.apple.com/ Apple Developer Connection].
   
 
[[Category:OS]]
 
[[Category:OS]]

Revision as of 18:00, 20 March 2009


HUGS on Mac OS X

There is a MacPorts package for Hugs (under the name hugs98).

GHC on Mac OS X

GHC is available through MacPorts or as a standalone installer.

MacPorts

MacPorts contains a Portfile for GHC. Using MacPorts to install GHC will take a while as your computer will compile all the source files itself. In most cases, you're better off installing GHC through the standalone installer (see next section).

If you have MacPorts installed and haven't told it to selfupdate in a while, do that first:

$ sudo port selfupdate

This will take up to a minute, so be patient. It tells MacPorts to retrieve the latest package information from its servers. Next, install GHC:

$ sudo port install ghc

MacPorts will first download and install any dependencies that are needed to install GHC; then it will download, build and install GHC itself.


Standalone Installer for Mac OS X 10.5 (Intel)

There is a standalone installer available for Mac OS X 10.5 (Intel). It requires Xcode 3.0 to be already installed. If you do not have Xcode, you can install it from the installation DVD you got with you Mac or download it for free from Apple Developer Connection.