X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=docs%2Fusers_guide%2Finstalling.xml;h=36213ad0890fce5483a55ca494c4020a75648ac5;hb=aedb94f5f220b5e442b23ecc445fd38c8d9b6ba0;hp=6b576953d87b0c6b87735d3c32b453d89fa7041b;hpb=2cc64da9094b7bdb122c17e5b30b5b6b3c2259b5;p=ghc-hetmet.git diff --git a/docs/users_guide/installing.xml b/docs/users_guide/installing.xml index 6b57695..36213ad 100644 --- a/docs/users_guide/installing.xml +++ b/docs/users_guide/installing.xml @@ -63,142 +63,12 @@ Binary distributions come in “bundles,” called % cd /your/scratch/space -% bunnzip2 < ghc-version-platform.tar.bz2 | tar xvf - +% bunzip2 < ghc-version-platform.tar.bz2 | tar xvf - -Then you should find a single directory, -ghc-version, with the -following structure: - - - -binary distribution, layout -directory layout (binary distributions) - - - -Makefile.in - - -the raw material from which the Makefile -will be made (). - - - -configure - - -the configuration script (). - - - -README - - -Contains this file summary. - - - -INSTALL - - -Contains this description of how to install -the bundle. - - - -ANNOUNCE - - -The announcement message for the bundle. - - - -NEWS - - -release notes for the bundle—a longer version -of ANNOUNCE. For GHC, the release notes are contained in the User -Guide and this file isn't present. - - - - bin/platform - - -contains platform-specific executable -files to be invoked directly by the user. These are the files that -must end up in your path. - - - -lib/platform/ - - -contains platform-specific support -files for the installation. Typically there is a subdirectory for -each fptools project, whose name is the name of the project with its -version number. For example, for GHC there would be a sub-directory -ghc-x.xx/ where x.xx is the version number of GHC in the bundle. - - - -These sub-directories have the following general structure: - - - - - - -libHSstd.a etc: - - -supporting library archives. - - - -ghc-iface.prl etc: - - -support scripts. - - - -import/ - - -Interface files (.hi) for the prelude. - - - -include/ - - -A few C #include files. - - - - - - -share/ - - -contains platform-independent support files -for the installation. Again, there is a sub-directory for each -fptools project. - - - -html/ - - -contains HTML documentation files (one -sub-directory per project). - - - +Then you should find the bundle contents inside a single directory, +ghc-version. @@ -206,29 +76,27 @@ sub-directory per project). OK, so let's assume that you have unpacked your chosen bundles. What -next? Well, you will at least need to run the +next? Well, you will first need to configureconfigure -script by changing directory into the top-level directory for the -bundle and typing ./configure. That should convert -Makefile.in to Makefile. +the bundle by +changing to the bundle's top-level directory +and typing ./configure. That should convert +Makefile-vars.in to Makefile-vars. -installing in-place -in-place installation -You can now either start using the tools in-situ without going -through any installation process, just type make in-place to set the -tools up for this. You'll also want to add the path which make will -now echo to your PATH environment variable. This option is useful if -you simply want to try out the package and/or you don't have the -necessary privileges (or inclination) to properly install the tools -locally. Note that if you do decide to install the package `properly' -at a later date, you have to go through the installation steps that -follow. +The configure script takes a number of flags. The most +commonly used is the +--prefix=/path/to/install/in +flag, which tells the bundle that you want it to be installed in +/path/to/install/in rather than the default +location (/usr/local). +To see all the flags that configure accepts, run +configure --help. -To install a package, you'll have to do the following: +Then do the following: @@ -237,112 +105,35 @@ To install a package, you'll have to do the following: - Edit the Makefile and check the settings of the following variables: - -directories, installation -installation directories - - - - -platform - - -the platform you are going to install for. - - - -bindir - - -the directory in which to install user-invokable -binaries. - - - -libdir - - -the directory in which to install -platform-dependent support files. - - - -datadir - - -the directory in which to install -platform-independent support files. - - - -infodir - - -the directory in which to install Emacs info -files. - - - -htmldir - - -the directory in which to install HTML -documentation. - - - -dvidir - - -the directory in which to install DVI -documentation. - - - - -The values for these variables can be set through invocation of the -configureconfigure -script that comes with the distribution, but doing an optical diff to -see if the values match your expectations is always a Good Idea. - - - -Instead of running configure, it is -perfectly OK to copy Makefile.in to -Makefile and set all these variables directly -yourself. But do it right! - - - - - - Run make install. This should work with ordinary Unix make—no need for fancy stuff like GNU make. - - + -rehash (t?csh or zsh users), so your shell will see the new -stuff in your bin directory. - +If appropriate, add the bin directory to your PATH, as instructed. + + +You may need to run rehash (t?csh or zsh users), in +order for your shell to see the new stuff in your bin directory. + + + Once done, test your “installation” as suggested in . Be sure to use a -v option, so you can see exactly what pathnames it's using. - If things don't work as expected, check the list of known pitfalls in the building guide. + @@ -363,78 +154,6 @@ regardless, ghc-x.xx should always invoke GHC version - -What bundles there are - - -bundles, binary There are -plenty of “non-basic” GHC bundles. The files for them are -called -ghc-x.xx-bundle-platform.tar.gz, -where the platform is as above, and -bundle is one of these: - - - - - - -prof: - - -Profiling with cost-centres. You probably want this. -profiling bundles -bundles, profiling - - - -par: - - -Parallel Haskell features (sits on top of PVM). -You'll want this if you're into that kind of thing. -parallel bundles -bundles, parallel - - - -gran: - - -The “GranSim” parallel-Haskell simulator -(hmm… mainly for implementors). -bundles, gransim -gransim bundles - - - -ticky: - - -“Ticky-ticky” profiling; very detailed -information about “what happened when I ran this program”—really -for implementors. -bundles, ticky-ticky -ticky-ticky bundles - - - - - - -One likely scenario is that you will grab two -binary bundles—basic, and profiling. We don't usually make the -rest, although you can build them yourself from a source distribution. - - -The various GHC bundles are designed to be unpacked into the -same directory; then installing as per the directions above will -install the whole lot in one go. Note: you must -at least have the basic GHC binary distribution bundle, these extra -bundles won't install on their own. - - - Testing that GHC seems to be working @@ -474,14 +193,6 @@ Hello, world! - -Some simple-but-profitable tests are to compile and run the notorious -nfibnfib program, using different numeric types. Start with -nfib :: Int -> Int, and then try Integer, Float, Double, -Rational and perhaps the overloaded version. Code for this is -distributed in ghc/misc/examples/nfib/ in a source distribution. - - For more information on how to “drive” GHC, read on... @@ -514,16 +225,16 @@ url="http://www.haskell.org/ghc/download.html">GHC download page. Run the installer. On Windows, all of GHC's files are installed in a single directory. You can override it, but by default this directory is -c:/ghc/ghc-version. +c:/ghc/ghc-version. The executable binary for GHC will be installed in the bin/ sub-directory of the installation directory. If you want to invoke GHC from a command line, add this -to your PATH environment variable. +to your $PATH environment variable. When installation is complete, you should find GHCi and the GHC documentation are available in your Start menu under -"Start/All Programs/GHC/ghc-version". +"Start/All Programs/GHC/ghc-version". @@ -532,17 +243,17 @@ GHC needs a directory in which to create, and later delete, temporary files. It uses the standard Windows procedure GetTempPath() to find a suitable directory. This procedure returns: -The path in environment variable TMP, +The path in the environment variable TMP, if TMP is set. -Otherwise, the path in environment variable TEMP, +Otherwise, the path in the environment variable TEMP, if TEMP is set. Otherwise, there is a per-user default which varies between versions of Windows. On NT and XP-ish versions, it might be: -c:\Documents and Settings\<username>\Local Settings\Temp +c:\Documents and Settings\<username>\Local Settings\Temp. -The main point is that if you don't do anything GHC will work fine; +The main point is that if you don't do anything GHC will work fine, but if you want to control where the directory is, you can do so by setting TMP or TEMP. @@ -571,7 +282,7 @@ You do not need the Cygwin toolchain, or anything else, to install and run GHC. -An installation of GHC requires about 340M of disk space. +An installation of GHC requires about 365M of disk space. To run GHC comfortably, your machine should have at least 64M of memory. @@ -580,16 +291,16 @@ To run GHC comfortably, your machine should have at least Moving GHC around Once GHC is installed, you can freely move the entire GHC tree just by copying -the c:/ghc/ghc-version +the c:/ghc/ghc-version directory. (You will need to fix up -the links in "Start/All Programs/GHC/ghc-version" +the links in "Start/All Programs/GHC/ghc-version" if you do this.) It is OK to put GHC tree in a directory whose path involves spaces. However, don't do this if you use want to use GHC with the Cygwin tools, because Cygwin can get confused when this happens. -We havn't quite got to the bottom of this, but so far as we know it's not +We haven't quite got to the bottom of this, but so far as we know it's not a problem with GHC itself. Nevertheless, just to keep life simple we usually put GHC in a place with a space-free path. @@ -681,9 +392,9 @@ That is why $(bindir) must be $(libdir)/bin The binary directory -The binary directory, $(bindir) contains user-visible +The binary directory, $(bindir), contains user-visible executables, notably ghc and ghci. -You should add it to your $PATH +You should add it to your $PATH. On Unix, the user-invokable ghc invokes $(libdir)/ghc-version, @@ -706,18 +417,20 @@ truncates them. Similarly ghci is a C wrapper program that The library directory -The layout of the library directory, $(libdir) is almost identical on +The layout of the library directory, $(libdir), +is almost identical on Windows and Unix, as follows. Differences between Windows and Unix -are noted thus [Win32 only] and are commented below. +are annotated [Win32 only] and are commented below. $(libdir)/ package.conf GHC package configuration ghc-usage.txt Message displayed by ghc ––help + ghci-usage.txt Message displayed by ghci ––help bin/ [Win32 only] User-visible binaries - ghc.exe - ghci.exe + ghc.exe + ghci.exe unlit Remove literate markup @@ -728,7 +441,7 @@ are noted thus [Win32 only] and are commented below. ghc-x.xx GHC executable [Unix only] ghc-split Asm code splitter - ghc-asm Asm code mangler + ghc-asm Asm code mangler gcc-lib/ [Win32 only] Support files for gcc specs gcc configuration @@ -738,32 +451,31 @@ are noted thus [Win32 only] and are commented below. ld.exe crt0.o Standard - ..etc.. binaries + ..etc.. binaries libmingw32.a Standard - ..etc.. libraries + ..etc.. libraries *.h Include files - imports/ GHC interface files - std/*.hi 'std' library - lang/*.hi 'lang' library - ..etc.. + hslibs-imports/ GHC interface files for the... + ghc/*.hi ...'ghc' library include/ C header files StgMacros.h GHC-specific - ..etc... header files + ..etc.. header files mingw/*.h [Win32 only] Mingwin header files - libHSrts.a GHC library archives - libHSstd.a - libHSlang.a - ..etc.. + lib/ GHC's library + base-2.1 + ..etc.. + + libHSrts*.a GHC RTS archive + libHSghc.a GHC package archive - HSstd1.o GHC library linkables - HSstd2.o (used by ghci, which does - HSlang.o not grok .a files yet) + HSrts.o GHC RTS linkable, used by ghci + HSghc.o GHC package linkable, used by ghci Note that: @@ -772,7 +484,7 @@ are noted thus [Win32 only] and are commented below. $(libdir) also contains support binaries. These are not expected to be - on the user's PATH, but and are invoked + on the user's PATH, but are invoked directly by GHC. In the Makefile system, this directory is also called $(libexecdir), but you are not free to change it. It must @@ -795,11 +507,11 @@ with the Win32 distribution of GHC. The support programs ghc-split and ghc-asm are Perl scripts. The - first line says #!/bin/perl; on Unix, the + first line says #!/usr/bin/perl; on Unix, the script is indeed invoked as a shell script, which invokes Perl; on Windows, GHC invokes $(libdir)/perl.exe directly, which - treats the #!/bin/perl as a comment. + treats the #!/usr/bin/perl as a comment. Reason: on Windows we want to invoke the Perl distributed with GHC, rather than assume some installed one.