Version 7.0.2 (released 3 March 2011)
Stop!
For most users, we recommend installing the Haskell Platform instead of GHC. The current Haskell Platform release includes a recent GHC release as well as some other tools (such as cabal), and a larger set of libraries that are known to work together. This standalone GHC 7.0.2 release is aimed primarily at package maintainers and early adopters.
Bundled packages and cabal-install
GHC 7.0.2 only works with Cabal-install version 0.8 or later. Please upgrade if you have an older version of cabal-install.
Contents
Distribution packages
GHC is packaged for a number of operating systems and distributions. While they may lag behind the latest GHC release, advantages such as dependency checking and ease of uninstallation mean we recommend using them anyway, unless you have a particular need for new features or bug fixes.
Binary Packages
The OS-specific packages (eg. RPMs on Linux) are generally a better bet than the vanilla .tar.bz2 binary bundles, because they will check for dependencies and allow the package to be uninstalled at a later date.
However, if you don't have permission to install binaries on your system, or you want to install somewhere other than the default place (/usr or /usr/local on a Unix system), then you'll need to use a .tar.bz2 binary bundle.
Supported platforms:
- Linux (x86)
- Linux (x86_64)
- Windows 2000/XP/Vista (x86) (standalone)
- MacOS X (x86)
- MacOS X (x86_64)
- FreeBSD (x86)
- FreeBSD (x86_64)
Community supported platforms:
Supported platforms
Linux (x86)
-
Generic i386 Linux. This is a complete build, including interactive system, profiling libraries and documentation.
- ghc-7.0.2-i386-unknown-linux.tar.bz2 (107 MB)
NOTE: If you have too old a version of libc, then you will get an error like "floating point exception" from the binaries in these bindists. You will need to either upgrade your libc (we're not sure what the minimum version required is), or use a binary package built for your distribution instead.
Linux (x86_64)
- Generic amd64 Linux. This is a complete build, including interactive system, profiling libraries and documentation.
NOTE: If you have too old a version of libc, then you will get an error like "floating point exception" from the binaries in these bindists. You will need to either upgrade your libc (we're not sure what the minimum version required is), or use a binary package built for your distribution instead.
Windows (x86) (standalone)
- ghc-7.0.2-i386-windows.exe (80 MB); a Windows Installer for GHC 7.0.2.
This is a complete build, and should work for Microsoft Windows 2000, XP and Vista. It also includes support for compiling C++ files.
This installer will not overwrite previous installed versions of GHC.
MacOS X (x86)
- GHC-7.0.2-i386.pkg (143 MB)
This is an installer for Mac OS X 10.6 (Snow Leopard). The package requires Xcode 3.2 (in particular, the "Unix Development Support") to be already installed. You can find Xcode 3.2 at http://developer.apple.com/ (or you may have a new enough version on your OS X installation DVD).
- ghc-7.0.2-i386-apple-darwin.tar.bz2 (151 MB)
This is the same build as the OS X installer, but in bindist form.
MacOS X (x86_64)
- GHC-7.0.2-x86_64.pkg (124 MB)
This is an installer for Mac OS X 10.6 (Snow Leopard). The package requires Xcode 3.2 (in particular, the "Unix Development Support") to be already installed. You can find Xcode 3.2 at http://developer.apple.com/ (or you may have a new enough version on your OS X installation DVD).
This is the same build as the OS X installer, but in bindist form.
FreeBSD (x86)
Gabor PALI has provided binary distribution tarballs for FreeBSD. These are complete builds, including interactive system, profiling libraries and documentation.
Note: These are not the same as the lang/ghc port. The packages require ports math/gmp, converters/libiconv, devel/gmake, lang/perl5.10, devel/autoconf262 to be already installed. For installation, set your prefix by "./configure --prefix=${PREFIX}" and install the binaries by "gmake install". For running the testsuite you will need the lang/python26 port as well.
If you have a 4.x version of GMP (installed from math/libgmp), then you will get an error like "libgmp.so.10 not found" from the binaries in these bindists. Upgrading your GMP port to 5.x by using the math/gmp port will solve this problem.
FreeBSD (x86_64)
Gabor PALI has provided binary distribution tarballs for FreeBSD. These are complete builds, including interactive system, profiling libraries and documentation.
Note: These are not the same as the lang/ghc port. The packages require ports math/gmp, converters/libiconv, devel/gmake, lang/perl5.10, devel/autoconf262 to be already installed. For installation, set your prefix by "./configure --prefix=${PREFIX}" and install the binaries by "gmake install". For running the testsuite you will need the lang/python26 port as well.
If you have a 4.x version of GMP (installed from math/libgmp), then you will get an error like "libgmp.so.10 not found" from the binaries in these bindists. Upgrading your GMP port to 5.x by using the math/gmp port will solve this problem.
Source Distribution
- ghc-7.0.2-src.tar.bz2 (24 MB). This provides the compiler and a minimal set of libraries. For more information on building, see the building guide.
- testsuite-7.0.2-2.tar.bz2 (2.7 MB). If you unpack this tarball on top of the above then you will be able to run the testsuite.
The source distribution needs an installed GHC (version 6.10 at least). If your platform isn't currently supported with a binary distribution, then you'll need to consult the section on Porting GHC in the Building Guide.
If you have C libraries installed somewhere non-standard then you will need to put something like this in mk/build.mk before building:
EXTRA_CABAL_CONFIGURE_FLAGS = --extra-include-dirs=/usr/local/include \ --extra-lib-dirs=/usr/local/lib