X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=README;h=3010e9e10a53869381f149f7ad1f7fafcd46152a;hp=825b8c14651064392973b502127bc277f18ca17d;hb=143f4381d242e4a1c3174e8a0732a1e48f00a1aa;hpb=447fe8ef99466a175f4e1b3281c7794c67ca698c diff --git a/README b/README index 825b8c1..3010e9e 100644 --- a/README +++ b/README @@ -16,15 +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--src.tar.bz2 + ghc--src-extralibs.tar.bz2 + + You only need the first one, which contains GHC itself and + the "core" libraries. + + 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