X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=docs%2Fusers_guide%2Finstalling.xml;h=36213ad0890fce5483a55ca494c4020a75648ac5;hb=aedb94f5f220b5e442b23ecc445fd38c8d9b6ba0;hp=4f3a1c2a86f7d42d9e8061d52b776b2769d321fe;hpb=b4d1234d58af102db3a064802f3fa7ca3242b8ce;p=ghc-hetmet.git diff --git a/docs/users_guide/installing.xml b/docs/users_guide/installing.xml index 4f3a1c2..36213ad 100644 --- a/docs/users_guide/installing.xml +++ b/docs/users_guide/installing.xml @@ -63,7 +63,7 @@ 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 - @@ -225,7 +225,7 @@ 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 @@ -234,7 +234,7 @@ 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". @@ -243,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. @@ -282,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. @@ -291,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. @@ -484,7 +484,7 @@ are annotated [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 @@ -507,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.