diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-08-24 15:06:47 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-08-24 15:06:47 +0000 |
commit | ed4240c7ff1a532e3eeadd9e5814fb191fc227fa (patch) | |
tree | 5236854031fa90698ee8b2ff0c5c1ae870ccaf67 /README | |
parent | 63765a63618dba68dcdace4d9e9e42b601c0e9f3 (diff) | |
download | haskell-ed4240c7ff1a532e3eeadd9e5814fb191fc227fa.tar.gz |
expand the section on getting the source.
Diffstat (limited to 'README')
-rw-r--r-- | README | 46 |
1 files changed, 37 insertions, 9 deletions
@@ -16,20 +16,48 @@ Information for developers of GHC can be found here: Getting the Source ================== -First get the GHC darcs repository: +There are two ways to get a source tree: - $ darcs get http://darcs.haskell.org/ghc/ + 1. Download source tarballs + --------------------------- -Then run the darcs-all shell script in that repository -to get the other repositories: + The GHC source distribution comes in two parts: - $ cd ghc - $ sh darcs-all + ghc-<version>-src.tar.bz2 + ghc-<version>-src-extralibs.tar.bz2 -This grabs the "core" packages by default. To get the full set of -packages (which will probably take a long time to build), instead say + You only need the first one, which contains GHC itself and + the "core" libraries. - $ sh darcs-all --extra get + The extralibs package contains a bunch of optional libraries. If + you want, you can unpack this over the top of your source tree, and + these extra libraries will be built and installed automatically. + Make sure you unpack the extralibs package before running configure + (see below). + + If you don't build extralibs now, you can add them later by building + and installing individual packages using Cabal. + + 2. Get the source from darcs + ---------------------------- + + First get the GHC darcs repository: + + $ darcs get http://darcs.haskell.org/ghc/ + + Then run the darcs-all shell script in that repository + to get the other repositories: + + $ cd ghc + $ sh darcs-all get + + This grabs the "core" packages by default. To get the full set of + packages, instead say + + $ sh darcs-all --extra get + + This also downloads the libraries that are normally bundled in the + "extralibs" package (see above). Building & Installing |