X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=README;h=1cd147e5aa734665458c4f87e6b3e42c57f9d9c2;hp=c2967fcfda17086182f8ae778aafee89538bb0b3;hb=e30aca19def5c629a8429bd57e56535b7f8f85c8;hpb=0065d5ab628975892cea1ec7303f968c3338cbe1 diff --git a/README b/README index c2967fc..1cd147e 100644 --- a/README +++ b/README @@ -13,6 +13,53 @@ Information for developers of GHC can be found here: http://hackage.haskell.org/trac/ghc/ +Getting the Source +================== + +There are two ways to get a source tree: + + 1. Download source tarballs + --------------------------- + + The GHC source distribution comes in two parts: + + 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 ===================== @@ -51,7 +98,7 @@ References [1] http://www.haskell.org/ghc/ GHC Home Page [2] http://hackage.haskell.org/trac/ghc GHC Developer's Wiki - [3] http://www.haskell.org/ghc/docs/latest/html/building/index.html + [3] http://hackage.haskell.org/trac/ghc/wiki/Building Building Guide [4] http://www.haskell.org/happy/ Happy